Many companies share their financial results for a quarter or a year through earning calls and reports. It is a way to communicate with shareholders about the company’s performance and strategy for the future. Although, the full report with all the numbers and plans is a good way to look at company's present and future, the important part of this earning call is a speech by the CEO/CFO where they highlight company’s progress and answer some questions by investors.
import pandas as pd, numpy as np
import os, re
import nltk
nltk.download(['punkt','stopwords','averaged_perceptron_tagger','vader_lexicon','wordnet','universal_tagset','maxent_ne_chunker','words'])
[nltk_data] Downloading package punkt to [nltk_data] /Users/anshulkhairari/nltk_data... [nltk_data] Package punkt is already up-to-date! [nltk_data] Downloading package stopwords to [nltk_data] /Users/anshulkhairari/nltk_data... [nltk_data] Package stopwords is already up-to-date! [nltk_data] Downloading package averaged_perceptron_tagger to [nltk_data] /Users/anshulkhairari/nltk_data... [nltk_data] Package averaged_perceptron_tagger is already up-to- [nltk_data] date! [nltk_data] Downloading package vader_lexicon to [nltk_data] /Users/anshulkhairari/nltk_data... [nltk_data] Package vader_lexicon is already up-to-date! [nltk_data] Downloading package wordnet to [nltk_data] /Users/anshulkhairari/nltk_data... [nltk_data] Package wordnet is already up-to-date! [nltk_data] Downloading package universal_tagset to [nltk_data] /Users/anshulkhairari/nltk_data... [nltk_data] Package universal_tagset is already up-to-date! [nltk_data] Downloading package maxent_ne_chunker to [nltk_data] /Users/anshulkhairari/nltk_data... [nltk_data] Unzipping chunkers/maxent_ne_chunker.zip. [nltk_data] Downloading package words to [nltk_data] /Users/anshulkhairari/nltk_data... [nltk_data] Unzipping corpora/words.zip.
True
speech = open('data.txt')
speech = speech.readlines()
# Removing '\n' due to conversion of .txt to list
speech_clean = [re.sub('\n','',ceo) for ceo in speech]
speech_clean[:5]
['Good morning everyone and thanks for joining us', 'I want to start our call today by looking back', '2016 was a transformative year for us', 'Transformations are difficult, and this one was especially challenging', 'We started 2016 by resetting and focusing on why people use Twitter']
# Tokenization
from nltk.tokenize import word_tokenize
words = [word_tokenize(sent) for sent in speech_clean]
words[:5]
[['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'us'], ['I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back'], ['2016', 'was', 'a', 'transformative', 'year', 'for', 'us'], ['Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'was', 'especially', 'challenging'], ['We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter']]
# Removing stopwords and Punctuations
from nltk.corpus import stopwords
from string import punctuation
stop_nltk = stopwords.words("english")
stop_punct = list(punctuation)
stop_final = stop_nltk + stop_punct
tokens = []
for w in words:
for i in w:
if(i.lower() not in stop_final):
tokens.append(i)
tokens
['Good', 'morning', 'everyone', 'thanks', 'joining', 'us', 'want', 'start', 'call', 'today', 'looking', 'back', '2016', 'transformative', 'year', 'us', 'Transformations', 'difficult', 'one', 'especially', 'challenging', 'started', '2016', 'resetting', 'focusing', 'people', 'use', 'Twitter', "'s", 'fastest', 'way', 'see', "'s", 'happening', 'everyone', 'talking', 'reset', 'refocused', 'strengths', 'achieved', 'one', 'hardest', 'things', 'consumer', 'services', 'scale', 'reversed', 'reaccelerated', 'usage', "'re", 'thrilled', 'report', 'daily', 'active', 'usage', 'accelerated', 'third', 'quarter', 'row', 'see', 'strong', 'growth', 'continuing', 'making', 'experience', 'little', 'better', 'every', 'single', 'day', 'may', 'felt', 'like', "n't", 'changing', 'much', 'past', 'year', 'hundreds', 'little', 'changes', 'added', 'predictable', 'sustained', 'growth', 'use', 'foundation', 'inventive', 'take', 'bigger', 'risks', "'s", 'exactly', 'going', 'said', 'last', 'call', 'revenue', 'growth', 'lag', 'usage', 'see', 'numbers', 'outlook', 'proven', 'case', 'advertisers', 'need', 'approach', 'apply', 'consumer', 'service', 'reset', 'focus', 'strengths', 'means', 'clearly', 'differentiating', 'complementing', 'Twitter', "'s", 'real-time', 'nature', 'proving', 'advertisers', 'Twitter', 'easy', 'works', 'customers', '2016', 'challenge', 'reaccelerating', 'consumer', 'usage', 'gives', 'us', 'confidence', '2017', "'s", 'challenge', 'simplifying', 'differentiating', 'revenue', 'products', 'take', 'time', 'show', 'results', 'want', 'see', 'moving', 'forward', 'aggressively', 'whole', 'world', 'watching', 'Twitter', 'may', 'meeting', 'everyone', "'s", 'growth', 'expectations', "'s", 'one', 'thing', 'continues', 'grow', 'outpace', 'peers', 'Twitter', "'s", 'influence', 'impact', "n't", 'go', 'day', 'without', 'hearing', 'Twitter', 'used', 'fastest', 'way', 'send', 'message', 'world', 'instant', 'carries', 'important', 'commentary', 'conversations', 'mobilize', 'people', 'action', "'s", 'powerful', "'s", 'valuable', "'s", 'fundamental', "'s", 'reason', "'re", 'fighting', 'hard', 'service', 'company', 'love', "'s", 'hard', 'continue', 'hard', "'s", 'worth', 'Twitter', 'changed', 'way', 'world', 'communicates', "'ll", 'back', 'Krista', 'questions', 'Hey', 'John', 'thanks', 'question', 'spent', 'lot', 'time', '2016', 'really', 'focused', 'making', 'sure', 'identified', 'clarified', 'team', 'priorities', 'matters', 'terms', 'use', 'case', 'use', 'case', 'fundamental', 'Twitter', 'able', 'show', "'s", 'happening', 'immediately', 'able', 'get', 'people', 'news', 'immediately', 'anything', "'s", 'new', 'noteworthy', 'also', 'show', 'commentary', 'conversations', 'around', 'led', 'us', 'one', 'important', 'areas', 'home', 'timeline', 'making', 'relevant', 'recent', 'notifications', 'making', 'relevant', 'tell', 'people', "'s", 'breaking', 'direct', 'attention', 'easier', 'onboarding', 'also', 'easier', 'ways', 'tweet', "'ve", 'done', 'lot', 'work', 'across', 'four', 'areas', "'re", 'really', 'excited', "'re", 'actually', 'seeing', 'results', 'well', 'Something', 'launched', 'recently', 'Explore', 'tab', 'different', 'way', 'organizing', 'information', 'Twitter', 'based', 'around', 'topics', 'organized', 'search', 'moments', 'trends', 'topics', 'one', 'area', 'could', 'go', 'exhaust', 'timeline', 'find', 'new', 'things', 'happening', 'world', 'new', 'topics', 'might', 'interested', 'ultimately', 'want', 'follow', 'majority', 'effort', 'continue', 'timeline', 'notifications', 'make', 'simpler', 'easier', 'people', 'see', "'s", 'happening', 'also', 'participate', 'converse', "'re", 'going', 'put', 'lot', 'attention', 'Explore', 'making', 'sure', 'show', 'topics', 'faster', 'also', 'area', 'show', 'live', 'streaming', 'games', 'debates', 'elections', 'events', "'s", 'easier', 'place', 'find', 'time', "'s", 'something', 'live', 'going', 'Twitter', 'topic', 'might', 'find', 'hear', 'world', 'want', 'dive', 'Twitter', 'well', "'re", 'also', 'using', 'foundation', 'built', '2016', 'growth', 'seeing', 'focus', 'opportunity', 'take', 'bigger', 'risks', 'take', 'bigger', 'bets', 'within', 'consumer', 'product', 'well', 'nothing', 'announce', 'today', 'ideas', 'currently', 'exploring', 'Thank', 'terms', 'bigger', 'bets', 'make', 'big', 'bet', 'live', 'streaming', 'bringing', 'platform', 'entirely', 'new', 'experience', 'able', 'build', 'three', 'months', 'executed', 'really', 'well', 'create', 'experience', 'consistent', "'ve", 'seen', 'people', 'use', 'Twitter', 'past', '10', 'years', 'commenting', 'conversation', 'live', 'event', 'make', 'lot', 'easier', 'see', 'anywhere', 'train', 'commuting', 'home', 'commuting', 'work', 'office', 'see', 'NFL', 'game', 'see', 'debate', 'anywhere', "'re", 'looking', 'patterns', "'ve", 'seen', 'past', '10', 'years', 'people', 'use', 'Twitter', 'create', 'experiences', 'around', 'make', 'easier', 'share', "'s", 'happening', 'talk', "'s", 'happening', 'see', 'much', 'faster', 'thing', "'re", 'investing', 'lot', 'making', 'sure', 'apply', 'machine', 'learning', 'broadly', 'around', 'entire', 'experience', 'recently', 'hired', 'Jan', 'Peterson', '12:00', 'consolidate', 'science', 'efforts', 'deep', 'learning', 'machine', 'learning', 'artificial', 'intelligence', 'get', 'lot', 'smarter', 'provide', 'magical', 'experiences', 'people', 'around', 'showing', "'s", 'breaking', 'real', 'time', 'giving', 'sense', "'s", 'going', 'without', 'much', 'work', 'currently', 'platform', "'re", 'looking', 'lot', 'opportunities', 'organize', 'tweets', 'around', 'relevance', 'also', 'around', 'topics', 'interest', 'passions', 'people', 'care', 'really', 'unique', 'differentiator', 'Twitter', 'people', 'come', 'us', 'interest', 'build', 'interest', 'networks', 'around', 'think', "'s", 'lot', 'room', 'new', 'experiences', 'around', 'seems', 'like', "'s", 'still', 'lot', 'opportunity', 'see', 'even', 'make', 'easier', 'easier', 'people', 'tweet', 'focus', 'lot', 'topics', 'people', 'want', 'talk', 'participate', 'Youssef', 'leadership', 'team', 'late', 'last', 'year', 'really', 'flattened', 'organization', 'could', 'elevate', 'engineering', 'product', 'design', 'report', 'directly', 'could', 'lot', 'closer', 'products', 'spent', 'year', 'really', 'going', 'making', 'sure', 'reset', 'foundation', "'re", 'executing', 'priorities', 'execute', 'engineering', 'perspective', 'lot', 'confidence', 'move', 'lot', 'faster', 'bigger', 'things', 'taken', 'care', 'lot', 'things', 'simple', 'enough', 'lot', '27:25', 'needed', 'address', 'immediately', 'could', 'develop', 'much', 'faster', 'bring', 'new', 'experiences', 'life', "'m", 'really', 'confident', 'team', 'Ed', 'Ho', 'leading', 'consumer', 'service', "'s", 'company', 'two', 'years', "'s", 'shown', 'lot', 'great', 'promise', 'led', 'lot', 'effort', 'make', 'sure', "'re", 'focused', 'right', 'initiatives', 'actually', 'reaccelerate', 'growth', 'proven', 'lot', 'company', 'also', 'team', "'s", 'also', 'able', 'attract', 'really', 'senior', 'product', 'leads', 'well', 'Keith', 'Coleman', 'recent', 'also', 'brought', 'amazing', 'engineering', 'team', 'lead', 'consumer', 'products', 'efforts', "'ve", 'consolidating', 'organizations', 'build', 'strength', 'notably', 'machine', 'learning', 'artificial', 'intelligence', 'efforts', 'critical', 'us', 'able', 'move', 'much', 'faster', 'Jan', 'Peterson', '28:25', 'joined', 'work', 'get', 'everyone', 'page', 'make', 'sure', 'platform', 'internally', 'every', 'team', 'use', 'provide', 'better', 'magical', 'experiences', 'Twitter', 'machine', 'learning', 'artificial', 'intelligence', 'focus', 'team', 'allows', 'gives', 'lot', 'confidence', 'continue', 'focus', 'meaningful', 'things', 'companies', 'right', 'prioritization', 'front', 'us', 'Thank', 'first', 'question', 'would', 'say', 'President', "'s", 'use', 'Twitter', 'broadened', 'awareness', 'platform', 'used', 'shows', 'power', 'Twitter', 'tweets', 'sparks', 'conversation', 'discussion', 'macro', 'level', 'discussion', 'platform', 'really', 'helps', 'us', 'best', 'showing', "'s", 'happening', 'world', 'discussions', 'strengthens', 'key', 'differentiators', 'comprehensive', 'fast', 'quantitative', 'perspective', "'d", 'say', 'quarter', 'measure', 'analyze', 'factors', 'drive', 'causal', 'growth', 'audience', 'coincident', 'growth', 'fourth', 'quarter', 'primary', 'driver', 'growth', 'said', 'earlier', 'product', 'changes', 'marketing', 'also', 'look', 'couple', 'factors', 'see', "'s", 'significant', 'changes', 'trendlines', "'re", 'top', 'funnel', 'one', 'areas', 'could', "'ve", 'benefited', 'see', 'benefit', 'top', 'funnel', 'activity', 'throughout', 'election', 'time', 'period', 'relates', 'impressions', 'growth', 'another', 'area', 'look', 'mentioned', 'earlier', 'magnitude', 'impressions', 'platform', 'large', "'d", 'hard', 'event', 'single', 'person', 'drive', 'sustained', 'growth', 'impressions', 'growth', 'said', 'world', "'s", 'leaders', 'platform', 'talking', 'global', 'issues', 'people', 'passionately', 'expressing', 'points', 'view', "'s", 'positive', 'Twitter', "'s", "'re", 'focused', 'time', 'drive', 'faster', 'distribution', 'content', 'comprehensive', 'content', 'discussion', 'personalization', "'re", 'better', 'delivering', "'s", 'happening', 'world', "'s", 'talked', 'ca', "n't", 'quantify', 'impact', 'point', 'time', "'ll", 'continue', 'analyze', 'go', 'Q1', 'talk', 'end', 'quarter', 'relates', 'second', 'question', 'listen', 'environment', 'definitely', 'competitive', 'throughout', '2016', '2015', 'prior', 'calls', "'ve", 'talked', 'fact', 'large-scale', 'players', 'digital', 'advertising', 'social', 'advertising', 'budgets', 'prior', 'years', "'s", 'increased', 'throughout', '2016', '2017', 'think', 'saw', 'mid-January', 'relates', 'acceleration', 'competitive', 'factors', "'s", 'really', 'advertisers', 'start', 'ramp', 'spending', 'coming', 'fourth', 'quarter', 'February', 'time', 'period', 'historically', '35', '40', 'versus', 'January', 'ramp', 'really', 'starts', 'mid-January', 'February', "'s", 'saw', 'marketplace', 'challenges', 'ability', 'attract', 'demand', ...]
# Frequency Distribution of Words
from nltk.probability import FreqDist
freq_words = FreqDist(tokens)
freq_words.most_common(10)
[("'s", 50),
('lot', 28),
('Twitter', 25),
("'re", 23),
('people', 22),
('really', 17),
('see', 15),
('us', 13),
('growth', 13),
('world', 13)]
import matplotlib.pyplot as plt
freq_words.plot(30,cumulative=False)
plt.show()
# Stemming
from nltk.stem.snowball import SnowballStemmer
s_stem = SnowballStemmer(language='english')
stemmed_tokens = []
for i in tokens:
s_words = s_stem.stem(i)
stemmed_tokens.append(s_words)
stemmed_tokens
['good', 'morn', 'everyon', 'thank', 'join', 'us', 'want', 'start', 'call', 'today', 'look', 'back', '2016', 'transform', 'year', 'us', 'transform', 'difficult', 'one', 'especi', 'challeng', 'start', '2016', 'reset', 'focus', 'peopl', 'use', 'twitter', "'s", 'fastest', 'way', 'see', "'s", 'happen', 'everyon', 'talk', 'reset', 'refocus', 'strength', 'achiev', 'one', 'hardest', 'thing', 'consum', 'servic', 'scale', 'revers', 'reacceler', 'usag', 're', 'thrill', 'report', 'daili', 'activ', 'usag', 'acceler', 'third', 'quarter', 'row', 'see', 'strong', 'growth', 'continu', 'make', 'experi', 'littl', 'better', 'everi', 'singl', 'day', 'may', 'felt', 'like', "n't", 'chang', 'much', 'past', 'year', 'hundr', 'littl', 'chang', 'ad', 'predict', 'sustain', 'growth', 'use', 'foundat', 'invent', 'take', 'bigger', 'risk', "'s", 'exact', 'go', 'said', 'last', 'call', 'revenu', 'growth', 'lag', 'usag', 'see', 'number', 'outlook', 'proven', 'case', 'advertis', 'need', 'approach', 'appli', 'consum', 'servic', 'reset', 'focus', 'strength', 'mean', 'clear', 'differenti', 'complement', 'twitter', "'s", 'real-tim', 'natur', 'prove', 'advertis', 'twitter', 'easi', 'work', 'custom', '2016', 'challeng', 'reacceler', 'consum', 'usag', 'give', 'us', 'confid', '2017', "'s", 'challeng', 'simplifi', 'differenti', 'revenu', 'product', 'take', 'time', 'show', 'result', 'want', 'see', 'move', 'forward', 'aggress', 'whole', 'world', 'watch', 'twitter', 'may', 'meet', 'everyon', "'s", 'growth', 'expect', "'s", 'one', 'thing', 'continu', 'grow', 'outpac', 'peer', 'twitter', "'s", 'influenc', 'impact', "n't", 'go', 'day', 'without', 'hear', 'twitter', 'use', 'fastest', 'way', 'send', 'messag', 'world', 'instant', 'carri', 'import', 'commentari', 'convers', 'mobil', 'peopl', 'action', "'s", 'power', "'s", 'valuabl', "'s", 'fundament', "'s", 'reason', 're', 'fight', 'hard', 'servic', 'compani', 'love', "'s", 'hard', 'continu', 'hard', "'s", 'worth', 'twitter', 'chang', 'way', 'world', 'communic', 'll', 'back', 'krista', 'question', 'hey', 'john', 'thank', 'question', 'spent', 'lot', 'time', '2016', 'realli', 'focus', 'make', 'sure', 'identifi', 'clarifi', 'team', 'prioriti', 'matter', 'term', 'use', 'case', 'use', 'case', 'fundament', 'twitter', 'abl', 'show', "'s", 'happen', 'immedi', 'abl', 'get', 'peopl', 'news', 'immedi', 'anyth', "'s", 'new', 'noteworthi', 'also', 'show', 'commentari', 'convers', 'around', 'led', 'us', 'one', 'import', 'area', 'home', 'timelin', 'make', 'relev', 'recent', 'notif', 'make', 'relev', 'tell', 'peopl', "'s", 'break', 'direct', 'attent', 'easier', 'onboard', 'also', 'easier', 'way', 'tweet', 've', 'done', 'lot', 'work', 'across', 'four', 'area', 're', 'realli', 'excit', 're', 'actual', 'see', 'result', 'well', 'someth', 'launch', 'recent', 'explor', 'tab', 'differ', 'way', 'organ', 'inform', 'twitter', 'base', 'around', 'topic', 'organ', 'search', 'moment', 'trend', 'topic', 'one', 'area', 'could', 'go', 'exhaust', 'timelin', 'find', 'new', 'thing', 'happen', 'world', 'new', 'topic', 'might', 'interest', 'ultim', 'want', 'follow', 'major', 'effort', 'continu', 'timelin', 'notif', 'make', 'simpler', 'easier', 'peopl', 'see', "'s", 'happen', 'also', 'particip', 'convers', 're', 'go', 'put', 'lot', 'attent', 'explor', 'make', 'sure', 'show', 'topic', 'faster', 'also', 'area', 'show', 'live', 'stream', 'game', 'debat', 'elect', 'event', "'s", 'easier', 'place', 'find', 'time', "'s", 'someth', 'live', 'go', 'twitter', 'topic', 'might', 'find', 'hear', 'world', 'want', 'dive', 'twitter', 'well', 're', 'also', 'use', 'foundat', 'built', '2016', 'growth', 'see', 'focus', 'opportun', 'take', 'bigger', 'risk', 'take', 'bigger', 'bet', 'within', 'consum', 'product', 'well', 'noth', 'announc', 'today', 'idea', 'current', 'explor', 'thank', 'term', 'bigger', 'bet', 'make', 'big', 'bet', 'live', 'stream', 'bring', 'platform', 'entir', 'new', 'experi', 'abl', 'build', 'three', 'month', 'execut', 'realli', 'well', 'creat', 'experi', 'consist', 've', 'seen', 'peopl', 'use', 'twitter', 'past', '10', 'year', 'comment', 'convers', 'live', 'event', 'make', 'lot', 'easier', 'see', 'anywher', 'train', 'commut', 'home', 'commut', 'work', 'offic', 'see', 'nfl', 'game', 'see', 'debat', 'anywher', 're', 'look', 'pattern', 've', 'seen', 'past', '10', 'year', 'peopl', 'use', 'twitter', 'creat', 'experi', 'around', 'make', 'easier', 'share', "'s", 'happen', 'talk', "'s", 'happen', 'see', 'much', 'faster', 'thing', 're', 'invest', 'lot', 'make', 'sure', 'appli', 'machin', 'learn', 'broad', 'around', 'entir', 'experi', 'recent', 'hire', 'jan', 'peterson', '12:00', 'consolid', 'scienc', 'effort', 'deep', 'learn', 'machin', 'learn', 'artifici', 'intellig', 'get', 'lot', 'smarter', 'provid', 'magic', 'experi', 'peopl', 'around', 'show', "'s", 'break', 'real', 'time', 'give', 'sens', "'s", 'go', 'without', 'much', 'work', 'current', 'platform', 're', 'look', 'lot', 'opportun', 'organ', 'tweet', 'around', 'relev', 'also', 'around', 'topic', 'interest', 'passion', 'peopl', 'care', 'realli', 'uniqu', 'differenti', 'twitter', 'peopl', 'come', 'us', 'interest', 'build', 'interest', 'network', 'around', 'think', "'s", 'lot', 'room', 'new', 'experi', 'around', 'seem', 'like', "'s", 'still', 'lot', 'opportun', 'see', 'even', 'make', 'easier', 'easier', 'peopl', 'tweet', 'focus', 'lot', 'topic', 'peopl', 'want', 'talk', 'particip', 'youssef', 'leadership', 'team', 'late', 'last', 'year', 'realli', 'flatten', 'organ', 'could', 'elev', 'engin', 'product', 'design', 'report', 'direct', 'could', 'lot', 'closer', 'product', 'spent', 'year', 'realli', 'go', 'make', 'sure', 'reset', 'foundat', 're', 'execut', 'prioriti', 'execut', 'engin', 'perspect', 'lot', 'confid', 'move', 'lot', 'faster', 'bigger', 'thing', 'taken', 'care', 'lot', 'thing', 'simpl', 'enough', 'lot', '27:25', 'need', 'address', 'immedi', 'could', 'develop', 'much', 'faster', 'bring', 'new', 'experi', 'life', "'m", 'realli', 'confid', 'team', 'ed', 'ho', 'lead', 'consum', 'servic', "'s", 'compani', 'two', 'year', "'s", 'shown', 'lot', 'great', 'promis', 'led', 'lot', 'effort', 'make', 'sure', 're', 'focus', 'right', 'initi', 'actual', 'reacceler', 'growth', 'proven', 'lot', 'compani', 'also', 'team', "'s", 'also', 'abl', 'attract', 'realli', 'senior', 'product', 'lead', 'well', 'keith', 'coleman', 'recent', 'also', 'brought', 'amaz', 'engin', 'team', 'lead', 'consum', 'product', 'effort', 've', 'consolid', 'organ', 'build', 'strength', 'notabl', 'machin', 'learn', 'artifici', 'intellig', 'effort', 'critic', 'us', 'abl', 'move', 'much', 'faster', 'jan', 'peterson', '28:25', 'join', 'work', 'get', 'everyon', 'page', 'make', 'sure', 'platform', 'intern', 'everi', 'team', 'use', 'provid', 'better', 'magic', 'experi', 'twitter', 'machin', 'learn', 'artifici', 'intellig', 'focus', 'team', 'allow', 'give', 'lot', 'confid', 'continu', 'focus', 'meaning', 'thing', 'compani', 'right', 'priorit', 'front', 'us', 'thank', 'first', 'question', 'would', 'say', 'presid', "'s", 'use', 'twitter', 'broaden', 'awar', 'platform', 'use', 'show', 'power', 'twitter', 'tweet', 'spark', 'convers', 'discuss', 'macro', 'level', 'discuss', 'platform', 'realli', 'help', 'us', 'best', 'show', "'s", 'happen', 'world', 'discuss', 'strengthen', 'key', 'differenti', 'comprehens', 'fast', 'quantit', 'perspect', "'d", 'say', 'quarter', 'measur', 'analyz', 'factor', 'drive', 'causal', 'growth', 'audienc', 'coincid', 'growth', 'fourth', 'quarter', 'primari', 'driver', 'growth', 'said', 'earlier', 'product', 'chang', 'market', 'also', 'look', 'coupl', 'factor', 'see', "'s", 'signific', 'chang', 'trendlin', 're', 'top', 'funnel', 'one', 'area', 'could', 've', 'benefit', 'see', 'benefit', 'top', 'funnel', 'activ', 'throughout', 'elect', 'time', 'period', 'relat', 'impress', 'growth', 'anoth', 'area', 'look', 'mention', 'earlier', 'magnitud', 'impress', 'platform', 'larg', "'d", 'hard', 'event', 'singl', 'person', 'drive', 'sustain', 'growth', 'impress', 'growth', 'said', 'world', "'s", 'leader', 'platform', 'talk', 'global', 'issu', 'peopl', 'passion', 'express', 'point', 'view', "'s", 'posit', 'twitter', "'s", 're', 'focus', 'time', 'drive', 'faster', 'distribut', 'content', 'comprehens', 'content', 'discuss', 'person', 're', 'better', 'deliv', "'s", 'happen', 'world', "'s", 'talk', 'ca', "n't", 'quantifi', 'impact', 'point', 'time', 'll', 'continu', 'analyz', 'go', 'q1', 'talk', 'end', 'quarter', 'relat', 'second', 'question', 'listen', 'environ', 'definit', 'competit', 'throughout', '2016', '2015', 'prior', 'call', 've', 'talk', 'fact', 'large-scal', 'player', 'digit', 'advertis', 'social', 'advertis', 'budget', 'prior', 'year', "'s", 'increas', 'throughout', '2016', '2017', 'think', 'saw', 'mid-januari', 'relat', 'acceler', 'competit', 'factor', "'s", 'realli', 'advertis', 'start', 'ramp', 'spend', 'come', 'fourth', 'quarter', 'februari', 'time', 'period', 'histor', '35', '40', 'versus', 'januari', 'ramp', 'realli', 'start', 'mid-januari', 'februari', "'s", 'saw', 'marketplac', 'challeng', 'abil', 'attract', 'demand', ...]
# Lemmatization
from nltk.stem import WordNetLemmatizer
lemmatizer = WordNetLemmatizer()
# A. Lemmatizing on data with stop-words
lemma_words = []
processor = []
for i in words:
for w in i:
l_words = lemmatizer.lemmatize(w)
processor.append(l_words)
lemma_words.append(processor)
print(lemma_words)
# B. Lemmatizing on data without stop-words/ on tokens
lemma_tokens = []
for i in tokens:
l_tokens = lemmatizer.lemmatize(i)
lemma_tokens.append(i)
print(lemma_tokens[:10])
[['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter'], ['Good', 'morning', 'everyone', 'and', 'thanks', 'for', 'joining', 'u', 'I', 'want', 'to', 'start', 'our', 'call', 'today', 'by', 'looking', 'back', '2016', 'wa', 'a', 'transformative', 'year', 'for', 'u', 'Transformations', 'are', 'difficult', ',', 'and', 'this', 'one', 'wa', 'especially', 'challenging', 'We', 'started', '2016', 'by', 'resetting', 'and', 'focusing', 'on', 'why', 'people', 'use', 'Twitter', 'It', "'s", 'the', 'fastest', 'way', 'to', 'see', 'what', "'s", 'happening', ',', 'and', 'what', 'everyone', 'is', 'talking', 'about', 'We', 'reset', 'and', 'refocused', 'on', 'our', 'strength', ',', 'and', 'we', 'achieved', 'one', 'of', 'the', 'hardest', 'thing', 'to', 'do', 'for', 'a', 'consumer', 'service', 'scale', 'We', 'reversed', 'and', 'reaccelerated', 'our', 'usage', 'We', "'re", 'thrilled', 'to', 'report', 'that', 'daily', 'active', 'usage', 'accelerated', 'for', 'the', 'third', 'quarter', 'in', 'a', 'row', ',', 'and', 'we', 'see', 'that', 'strong', 'growth', 'continuing', 'We', 'did', 'this', 'by', 'making', 'the', 'experience', 'a', 'little', 'better', 'every', 'single', 'day', 'It', 'may', 'have', 'felt', 'like', 'we', 'were', "n't", 'changing', 'much', 'this', 'past', 'year', ',', 'but', 'those', 'hundred', 'of', 'little', 'change', 'added', 'up', 'to', 'more', 'predictable', 'and', 'sustained', 'growth', 'we', 'will', 'now', 'use', 'a', 'a', 'foundation', 'to', 'be', 'more', 'inventive', 'and', 'to', 'take', 'bigger', 'risk', 'And', 'that', "'s", 'exactly', 'what', 'we', 'are', 'now', 'going', 'to', 'do', 'We', 'said', 'on', 'our', 'last', 'call', 'that', 'revenue', 'growth', 'will', 'lag', 'usage', 'As', 'you', 'see', 'in', 'our', 'number', 'and', 'our', 'outlook', ',', 'this', 'ha', 'proven', 'to', 'be', 'the', 'case', 'Our', 'advertiser', 'need', 'the', 'same', 'approach', 'we', 'apply', 'to', 'our', 'consumer', 'service', ',', 'reset', 'and', 'focus', 'on', 'our', 'strength', 'This', 'mean', 'clearly', 'differentiating', 'and', 'complementing', 'Twitter', "'s", 'real-time', 'nature', ',', 'and', 'proving', 'to', 'advertiser', 'that', 'Twitter', 'is', 'easy', 'and', 'work', 'for', 'them', 'and', 'their', 'customer', '2016', 'challenge', 'wa', 'reaccelerating', 'our', 'consumer', 'usage', 'We', 'did', 'it', ',', 'and', 'that', 'give', 'u', 'the', 'confidence', 'we', 'can', 'do', 'it', 'again', '2017', "'s", 'challenge', 'is', 'simplifying', 'and', 'differentiating', 'our', 'revenue', 'product', 'It', 'will', 'take', 'time', 'to', 'show', 'the', 'result', 'we', 'all', 'want', 'to', 'see', ',', 'and', 'we', 'are', 'moving', 'forward', 'aggressively', 'The', 'whole', 'world', 'is', 'watching', 'Twitter', 'While', 'we', 'may', 'not', 'be', 'meeting', 'everyone', "'s", 'growth', 'expectation', ',', 'there', "'s", 'one', 'thing', 'that', 'continues', 'to', 'grow', 'and', 'outpace', 'our', 'peer', ':', 'Twitter', "'s", 'influence', 'and', 'impact', 'You', 'do', "n't", 'go', 'a', 'day', 'without', 'hearing', 'about', 'Twitter', ',', 'how', 'it', 'is', 'used', 'a', 'the', 'fastest', 'way', 'to', 'send', 'a', 'message', 'to', 'the', 'world', 'in', 'an', 'instant', ',', 'how', 'it', 'carry', 'some', 'of', 'the', 'most', 'important', 'commentary', 'and', 'conversation', ',', 'how', 'it', 'mobilize', 'people', 'into', 'action', 'That', "'s", 'powerful', ',', 'it', "'s", 'valuable', ',', 'it', "'s", 'fundamental', ',', 'and', 'it', "'s", 'the', 'reason', 'we', "'re", 'all', 'here', 'fighting', 'so', 'hard', 'for', 'the', 'service', 'and', 'company', 'we', 'love', 'It', "'s", 'been', 'hard', ',', 'it', 'will', 'continue', 'to', 'be', 'hard', ',', 'and', 'it', "'s", 'all', 'worth', 'it', 'Twitter', 'changed', 'the', 'way', 'the', 'world', 'communicates', 'And', 'we', "'ll", 'do', 'it', 'again', 'And', 'now', 'back', 'to', 'Krista', 'for', 'question', 'Hey', ',', 'John', 'thanks', 'for', 'the', 'question', 'So', 'we', 'spent', 'a', 'lot', 'of', 'our', 'time', 'in', '2016', 'really', 'focused', 'on', 'making', 'sure', 'that', 'we', 'have', 'identified', 'and', 'clarified', 'to', 'the', 'team', 'and', 'into', 'our', 'priority', 'what', 'matter', 'most', 'in', 'term', 'of', 'the', 'use', 'case', 'So', 'the', 'use', 'case', 'that', 'is', 'fundamental', 'to', 'Twitter', 'is', 'being', 'able', 'to', 'show', 'what', "'s", 'happening', 'immediately', ',', 'being', 'able', 'to', 'get', 'people', 'their', 'news', 'immediately', ',', 'about', 'anything', 'that', "'s", 'new', 'and', 'noteworthy', ',', 'and', 'also', 'to', 'show', 'all', 'the', 'commentary', 'and', 'conversation', 'around', 'it', 'So', 'that', 'led', 'u', 'to', 'one', 'of', 'the', 'most', 'important', 'area', ',', 'which', 'is', 'the', 'home', 'timeline', ',', 'and', 'making', 'that', 'more', 'relevant', ',', 'not', 'just', 'recent', 'notification', ',', 'making', 'those', 'more', 'relevant', ',', 'so', 'that', 'we', 'can', 'tell', 'people', 'what', "'s", 'breaking', ',', 'and', 'what', 'they', 'should', 'be', ',', 'what', 'they', 'should', 'direct', 'their', 'attention', 'to', ',', 'and', 'easier', 'onboarding', 'and', 'also', 'easier', 'way', 'to', 'tweet', 'We', "'ve", 'done', 'a', 'lot', 'of', 'work', 'across', 'those', 'four', 'area', ',', 'and', 'we', "'re", 'really', 'excited', 'that', 'we', "'re", 'actually', 'seeing', 'that', 'in', 'the', 'result', 'a', 'well', 'Something', 'that', 'we', 'launched', 'just', 'recently', 'wa', 'our', 'Explore', 'tab', 'which', 'is', 'a', 'different', 'way', 'of', 'organizing', 'information', 'on', 'Twitter', 'based', 'around', 'topic', 'So', 'we', 'organized', 'search', ',', 'moment', ',', 'trend', 'and', 'topic', 'into', 'one', 'area', 'that', 'you', 'could', 'go', 'to', 'after', 'you', 'exhaust', 'your', 'timeline', 'to', 'find', 'new', 'thing', 'that', 'are', 'happening', 'in', 'the', 'world', 'and', 'new', 'topic', 'that', 'you', 'might', 'be', 'interested', 'in', 'and', 'ultimately', 'want', 'to', 'follow', 'So', 'the', 'majority', 'of', 'our', 'effort', 'will', 'continue', 'to', 'be', 'in', 'the', 'timeline', 'and', 'in', 'notification', 'to', 'make', 'that', 'simpler', 'and', 'easier', 'for', 'people', 'to', 'see', 'what', "'s", 'happening', ',', 'but', 'also', 'to', 'participate', 'and', 'converse', 'But', 'we', "'re", 'going', 'to', 'put', 'a', 'lot', 'of', 'attention', 'into', 'Explore', ',', 'and', 'making', 'sure', 'that', 'we', 'show', 'more', 'topic', 'faster', 'This', 'is', 'also', 'an', 'area', 'where', 'we', 'can', 'show', 'off', 'our', 'live', 'streaming', 'game', ',', 'debate', ',', 'election', ',', 'and', 'event', 'So', 'it', "'s", 'an', 'easier', 'place', 'to', 'find', 'any', 'time', 'that', 'there', "'s", 'something', 'live', 'going', 'on', 'at', 'Twitter', ',', 'and', 'any', 'topic', 'that', 'you', 'might', 'find', 'or', 'hear', 'about', 'in', 'the', 'world', 'that', 'you', 'want', 'to', 'dive', 'into', 'on', 'Twitter', 'a', 'well', 'We', "'re", 'also', 'using', 'the', 'foundation', 'that', 'we', 'built', 'in', '2016', ',', 'and', 'all', 'the', 'growth', 'that', 'we', 'are', 'now', 'seeing', 'from', 'that', 'focus', 'a', 'an', 'opportunity', 'to', 'take', 'some', 'bigger', 'risk', 'and', 'to', 'take', 'some', 'bigger', 'bet', 'within', 'the', 'consumer', 'product', 'a', 'well', ',', 'and', 'nothing', 'to', 'announce', 'today', 'but', 'we', 'have', 'some', 'idea', 'that', 'we', 'are', 'currently', 'exploring', 'Thank', 'you', 'And', 'in', 'term', 'of', 'the', 'bigger', 'bet', ',', 'we', 'did', 'make', 'a', 'big', 'bet', 'in', 'live', 'streaming', 'and', 'bringing', 'that', 'to', 'the', 'platform', ',', 'and', 'that', 'wa', 'an', 'entirely', 'new', 'experience', 'that', 'we', 'were', 'able', 'to', 'build', 'in', 'just', 'three', 'month', 'So', 'we', 'executed', 'really', 'well', 'to', 'create', 'an', 'experience', 'that', 'is', 'consistent', 'with', 'how', 'we', "'ve", 'seen', 'people', 'use', 'Twitter', 'for', 'the', 'past', '10', 'year', ',', 'which', 'is', 'commenting', 'and', 'having', 'conversation', 'about', 'a', 'live', 'event', 'What', 'we', 'did', 'wa', 'make', 'it', 'a', 'lot', 'easier', 'to', 'see', 'anywhere', 'So', 'if', 'you', 'are', 'on', 'the', 'train', 'or', 'commuting', 'home', 'or', 'commuting', 'to', 'work', 'or', 'at', 'the', 'office', ',', 'you', 'can', 'see', 'the', 'NFL', 'game', 'or', 'you', 'can', 'see', 'the', 'debate', 'anywhere', 'you', 'are', 'So', 'we', "'re", 'looking', 'at', 'all', 'the', 'pattern', 'that', 'we', "'ve", 'seen', 'for', 'the', 'past', '10', 'year', 'on', 'how', 'people', 'use', 'Twitter', 'and', 'to', 'create', 'experience', 'around', 'that', 'that', 'make', 'it', 'easier', 'to', 'share', 'what', "'s", 'happening', ',', 'to', 'talk', 'about', 'what', "'s", 'happening', 'and', 'to', 'see', 'it', 'much', 'faster', 'The', 'other', 'thing', 'that', 'we', "'re", 'investing', 'a', 'lot', 'in', 'is', 'making', 'sure', 'that', 'we', 'apply', 'machine', 'learning', 'more', 'broadly', 'around', 'our', 'entire', 'experience', 'We', 'recently', 'hired', 'Jan', 'Peterson', '(', '12:00', ')', 'to', 'consolidate', 'all', 'of', 'our', 'science', 'effort', ',', 'all', 'of', 'our', 'deep', 'learning', ',', 'all', 'of', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', ',', 'so', 'that', 'we', 'can', 'get', 'a', 'lot', 'smarter', 'and', 'provide', 'more', 'magical', 'experience', 'for', 'people', 'around', 'showing', 'them', 'what', "'s", 'breaking', 'in', 'real', 'time', 'and', 'giving', 'them', 'a', 'sense', 'of', 'what', "'s", 'going', 'on', 'without', 'having', 'to', 'do', 'a', 'much', 'work', 'a', 'they', 'currently', 'have', 'to', 'do', 'on', 'the', 'platform', 'So', 'we', "'re", 'looking', 'at', 'a', 'lot', 'of', 'opportunity', 'to', 'organize', 'all', 'the', 'tweet', 'around', 'relevance', 'but', 'also', 'around', 'the', 'topic', 'and', 'the', 'interest', 'and', 'the', 'passion', 'that', 'people', 'care', 'about', 'We', 'have', 'a', 'really', 'unique', 'differentiator', 'in', 'Twitter', ',', 'and', 'that', 'people', 'come', 'to', 'u', 'because', 'of', 'interest', 'and', 'build', 'interest', 'network', 'around', 'that', ',', 'and', 'we', 'think', 'there', "'s", 'a', 'lot', 'of', 'room', 'for', 'new', 'experience', 'around', 'that', 'It', 'seems', 'like', 'there', "'s", 'still', 'a', 'lot', 'of', 'opportunity', 'to', 'see', 'even', 'more', 'a', 'we', 'make', 'it', 'easier', 'and', 'easier', 'for', 'people', 'to', 'tweet', ',', 'and', 'we', 'focus', 'a', 'lot', 'more', 'on', 'topic', 'that', 'people', 'want', 'to', 'talk', 'about', 'and', 'participate', 'with', 'And', 'Youssef', 'on', 'the', 'leadership', 'team', ',', 'so', 'late', 'last', 'year', 'we', 'really', 'flattened', 'the', 'organization', ',', 'so', 'that', 'we', 'could', 'elevate', 'engineering', 'product', 'and', 'design', ',', 'so', 'they', 'report', 'directly', 'to', 'me', ',', 'so', 'I', 'could', 'be', 'a', 'lot', 'closer', 'to', 'the', 'product', 'Now', 'that', 'we', 'spent', 'a', 'year', 'really', 'going', 'through', 'and', 'making', 'sure', 'that', 'we', 'reset', 'the', 'foundation', 'on', 'what', 'we', "'re", 'executing', ',', 'what', 'our', 'priority', 'are', 'and', 'how', 'we', 'execute', 'from', 'an', 'engineering', 'perspective', ',', 'we', 'have', 'a', 'lot', 'more', 'confidence', 'that', 'we', 'can', 'move', 'a', 'lot', 'faster', 'on', 'bigger', 'thing', 'because', 'we', 'have', 'taken', 'care', 'of', 'a', 'lot', 'of', 'the', 'thing', 'that', 'were', 'just', 'not', 'simple', 'enough', ',', 'and', 'a', 'lot', 'of', 'the', '(', '27:25', ')', 'that', 'we', 'needed', 'to', 'address', 'immediately', ',', 'so', 'that', 'we', 'could', 'develop', 'much', 'faster', 'and', 'bring', 'new', 'experience', 'to', 'life', 'I', "'m", 'really', 'confident', 'in', 'this', 'team', 'Ed', 'Ho', 'is', 'leading', 'all', 'of', 'our', 'consumer', 'service', 'He', "'s", 'been', 'with', 'the', 'company', 'for', 'over', 'two', 'year', 'and', 'he', "'s", 'shown', 'a', 'lot', 'of', 'great', 'promise', 'and', 'he', 'led', 'a', 'lot', 'of', 'our', 'effort', 'to', 'make', 'sure', 'that', 'we', "'re", 'focused', 'on', 'the', 'right', 'initiative', 'to', 'actually', 'reaccelerate', 'our', 'growth', 'and', 'ha', 'proven', 'a', 'lot', 'to', 'the', 'company', 'and', 'also', 'to', 'his', 'team', 'He', "'s", 'also', 'been', 'able', 'to', 'attract', 'really', 'senior', 'product', 'lead', 'a', 'well', ',', 'Keith', 'Coleman', 'being', 'the', 'most', 'recent', ',', 'who', 'also', 'brought', 'an', 'amazing', 'engineering', 'team', 'with', 'him', 'to', 'lead', 'the', 'consumer', 'product', 'effort', 'And', 'then', 'we', "'ve", 'been', 'consolidating', 'organization', 'to', 'build', 'our', 'strength', ',', 'most', 'notably', 'in', 'our', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'effort', ',', 'which', 'is', 'critical', 'to', 'u', 'being', 'able', 'to', 'move', 'much', 'faster', 'So', 'Jan', 'Peterson', '(', '28:25', ')', 'joined', 'and', 'is', 'now', 'just', 'doing', 'the', 'work', 'to', 'get', 'everyone', 'on', 'the', 'same', 'page', 'and', 'make', 'sure', 'that', 'we', 'have', 'a', 'platform', 'internally', 'that', 'every', 'team', 'can', 'use', 'to', 'provide', 'better', 'and', 'more', 'magical', 'experience', 'on', 'Twitter', 'through', 'machine', 'learning', 'and', 'artificial', 'intelligence', 'And', 'this', 'focus', 'and', 'this', 'team', 'allows', 'me', 'and', 'give', 'me', 'a', 'lot', 'of', 'confidence', 'that', 'I', 'can', 'continue', 'to', 'focus', 'on', 'the', 'most', 'meaningful', 'thing', 'at', 'both', 'company', 'and', 'we', 'have', 'the', 'right', 'prioritization', 'in', 'front', 'of', 'u', 'Thank', 'you', 'On', 'your', 'first', 'question', 'what', 'I', 'would', 'say', 'is', 'that', 'the', 'President', "'s", 'use', 'of', 'Twitter', 'ha', 'broadened', 'the', 'awareness', 'of', 'how', 'the', 'platform', 'can', 'be', 'used', 'and', 'it', 'show', 'the', 'power', 'of', 'Twitter', 'When', 'he', 'tweet', ',', 'it', 'spark', 'conversation', 'and', 'discussion', 'So', 'at', 'a', 'macro', 'level', 'discussion', 'on', 'the', 'platform', 'really', 'help', 'u', 'be', 'the', 'best', 'at', 'showing', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'more', 'discussion', 'strengthens', 'our', 'key', 'differentiator', 'in', 'comprehensive', 'and', 'fast', 'From', 'a', 'quantitative', 'perspective', ',', 'what', 'I', "'d", 'say', 'is', 'each', 'quarter', 'we', 'measure', 'and', 'analyze', 'factor', 'that', 'drive', 'causal', 'growth', 'in', 'the', 'audience', 'not', 'coincident', 'growth', 'In', 'the', 'fourth', 'quarter', ',', 'the', 'primary', 'driver', 'of', 'our', 'growth', 'wa', ',', 'a', 'I', 'said', 'earlier', ',', 'product', 'change', 'and', 'marketing', 'We', 'also', 'look', 'at', 'a', 'couple', 'of', 'other', 'factor', 'to', 'see', 'if', 'there', "'s", 'any', 'significant', 'change', 'in', 'those', 'trendlines', 'So', 'we', "'re", 'top', 'of', 'the', 'funnel', 'is', 'one', 'of', 'those', 'area', 'that', 'could', "'ve", 'benefited', 'and', 'we', 'do', 'not', 'see', 'a', 'benefit', 'to', 'the', 'top', 'of', 'the', 'funnel', 'from', 'all', 'of', 'the', 'activity', 'throughout', 'the', 'election', 'time', 'period', 'As', 'it', 'relates', 'to', 'impression', 'growth', ',', 'which', 'is', 'another', 'area', 'we', 'look', 'at', ',', 'a', 'I', 'mentioned', 'earlier', ',', 'the', 'magnitude', 'of', 'the', 'impression', 'of', 'the', 'platform', 'is', 'so', 'large', ',', 'it', "'d", 'be', 'very', 'hard', 'for', 'an', 'event', 'or', 'a', 'single', 'person', 'to', 'drive', 'sustained', 'growth', 'in', 'impression', 'growth', 'All', 'of', 'that', 'said', ',', 'having', 'the', 'world', "'s", 'leader', 'on', 'our', 'platform', ',', 'talking', 'about', 'global', 'issue', ',', 'people', 'being', 'passionately', 'expressing', 'their', 'point', 'of', 'view', ',', 'that', "'s", 'all', 'positive', 'for', 'Twitter', ',', 'and', 'that', "'s", 'what', 'we', "'re", 'focused', 'on', 'So', 'any', 'time', 'that', 'we', 'can', 'drive', 'faster', 'distribution', 'of', 'content', ',', 'more', 'comprehensive', 'of', 'content', ',', 'more', 'discussion', ',', 'or', 'more', 'personalization', ',', 'we', "'re", 'better', 'at', 'delivering', 'what', "'s", 'happening', 'in', 'the', 'world', 'and', 'what', "'s", 'being', 'talked', 'about', 'But', 'we', 'ca', "n't", 'quantify', 'any', 'impact', 'at', 'this', 'point', 'in', 'time', 'but', 'we', "'ll", 'continue', 'to', 'analyze', 'it', 'a', 'we', 'go', 'through', 'Q1', 'and', 'talk', 'to', 'you', 'at', 'the', 'end', 'of', 'the', 'quarter', 'As', 'it', 'relates', 'to', 'your', 'second', 'question', ',', 'listen', ',', 'the', 'environment', 'ha', 'definitely', 'been', 'more', 'competitive', 'throughout', '2016', 'than', '2015', '.', 'On', 'prior', 'call', ',', 'we', "'ve", 'talked', 'about', 'the', 'fact', 'that', 'there', 'are', 'more', 'large-scale', 'player', 'in', 'digital', 'advertising', 'and', 'social', 'advertising', 'budget', 'now', 'than', 'in', 'prior', 'year', 'That', "'s", 'only', 'increased', 'throughout', '2016', '.', 'In', '2017', ',', 'I', 'think', 'what', 'we', 'saw', 'in', 'mid-January', ',', 'a', 'it', 'relates', 'to', 'acceleration', 'of', 'competitive', 'factor', ',', 'it', "'s", 'really', 'when', 'advertiser', 'start', 'to', 'ramp', 'up', 'their', 'spending', 'coming', 'out', 'of', 'the', 'fourth', 'quarter', 'February', 'is', 'a', 'time', 'period', 'that', 'historically', 'ha', 'been', 'up', '35', '%', 'to', '40', '%', 'versus', 'January', ',', 'and', 'that', 'ramp', 'really', 'start', 'in', 'mid-January', 'through', 'February', 'and', 'that', "'s", 'when', 'we', 'saw', 'more', 'marketplace', 'challenge', 'in', 'our', 'ability', 'to', 'attract', 'demand', 'from', 'advertiser', 'I', 'think', 'there', "'s", 'a', 'number', 'of', 'factor', 'behind', 'that', 'More', 'player', ',', 'more', 'innovation', ',', 'some', 'of', 'the', 'competitor', 'have', 'a', 'lot', 'more', 'at', 'stake', 'at', 'this', 'moment', 'in', 'time', 'The', 'good', 'news', 'is', 'revenue', 'follows', 'audience', 'We', "'re", 'seeing', 'an', 'acceleration', 'in', 'audience', 'growth', 'We', 'want', 'to', 'translate', 'that', 'into', 'revenue', 'dollar', 'That', 'requires', 'u', 'proving', 'ROI', 'We', "'re", 'in', 'the', 'process', 'of', 'doing', 'that', 'with', 'our', 'advertiser', 'In', 'addition', 'to', 'that', ',', 'we', "'re", 'focused', 'on', 'other', 'revenue', 'stream', 'that', 'are', 'not', 'ad', 'driven', ',', 'and', 'area', 'of', 'low', 'hanging', 'opportunity', 'where', 'we', 'have', 'audience', 'that', 'are', "n't", 'being', 'monetized', 'And', 'the', 'final', 'point', 'I', "'d", 'make', 'is', 'what', 'we', "'re", 'doing', 'in', 'video', 'position', 'u', 'to', 'capture', 'ad', 'dollar', 'that', 'are', 'not', 'in', 'this', 'very', 'competitive', 'digital', 'advertising', 'bucket', ',', 'and', 'we', "'ve", 'started', 'to', 'tap', 'into', 'those', 'dollar', 'through', 'our', 'live', 'video', 'product', 'and', 'we', "'ll", 'continue', 'to', 'invest', 'in', 'that', 'area', 'a', 'well', 'Yes', 'We', 'did', 'focus', 'a', 'lot', 'of', 'our', 'attention', 'early', 'on', 'in', 'building', 'out', 'live', 'event', 'and', 'live', 'premium', 'video', 'on', 'the', 'experience', ',', 'a', 'Anthony', 'said', 'earlier', 'Now', 'our', 'focus', 'is', 'making', 'sure', 'that', 'we', 'are', 'connecting', 'people', 'faster', 'with', 'their', 'interest', 'and', 'with', 'the', 'topic', 'they', 'care', 'about', ',', 'and', 'that', 'includes', 'being', 'able', 'to', 'watch', 'an', 'event', 'directly', 'on', 'Twitter', 'So', 'the', 'Explore', 'tab', 'is', 'one', 'area', 'that', 'you', "'ll", 'be', 'able', 'to', 'go', 'to', 'for', 'any', 'live', 'event', 'but', 'we', "'re", 'also', 'looking', 'at', 'other', 'area', 'that', 'get', 'you', 'to', 'that', 'much', 'faster', 'if', 'you', 'express', 'an', 'interest', 'in', 'a', 'debate', ',', 'for', 'instance', ',', 'or', 'in', 'a', 'game', 'or', 'in', 'a', 'new', 'show', 'or', 'entertainment', 'So', 'this', 'is', 'the', 'focus', 'of', 'the', 'team', 'and', 'something', 'that', 'we', "'re", 'going', 'to', 'make', 'a', 'lot', 'of', 'progress', 'on', 'this', 'year', 'As', 'Anthony', 'said', ',', 'we', 'focused', 'all', 'of', '2016', 'on', 'making', 'sure', 'that', 'we', 'are', 'really', 'aligned', 'around', 'that', 'one', 'use', 'case', 'of', 'showing', 'what', "'s", 'happening', 'before', 'anyone', 'else', ',', 'being', 'the', 'best', 'place', 'to', 'get', 'your', 'news', 'and', 'all', 'the', 'conversation', 'and', 'commentary', 'that', "'s", 'going', 'on', 'in', 'the', 'world', 'So', 'we', 'made', 'tough', 'choice', ',', 'not', 'just', 'with', 'Fabric', 'but', 'also', 'with', 'thing', 'like', 'Vine', 'so', 'that', 'we', 'could', 'make', 'sure', 'that', 'we', "'re", 'putting', 'all', 'of', 'our', 'effort', 'behind', 'Twitter', 'and', 'what', 'ha', 'made', 'Twitter', 'great', 'over', 'the', 'past', '10', 'year', 'and', 'looking', 'for', 'new', 'opportunity', 'to', 'extend', 'that', 'use', 'case', 'and', 'extend', 'that', 'sense', 'of', 'what', "'s", 'happening', 'and', 'live', 'video', 'is', 'a', 'big', 'focus', 'of', 'that', 'a', 'well', 'So', 'everything', 'that', 'we', "'re", 'doing', 'around', 'live', 'streaming', 'premium', 'video', 'within', 'the', 'app', 'and', 'also', 'with', 'individual-created', ',', 'live-streaming', 'video', 'in', 'Periscope', 'ha', 'been', 'the', 'majority', 'of', 'our', 'focus', 'and', 'we', 'wanted', 'to', 'cut', 'everything', 'that', 'did', 'not', 'go', 'against', 'that', 'and', 'did', 'not', 'matter', 'And', ',', 'Brian', ',', 'I', 'would', 'say', '–', 'I', 'do', "n't", 'know', 'if', 'it', "'s", 'surprising', 'but', 'every', 'single', 'year', 'the', 'fact', 'that', 'Twitter', 'just', 'grows', 'in', 'it', 'impact', 'and', 'influence', 'and', 'how', 'instrumental', 'it', 'is', 'in', 'the', 'global', 'conversation', ',', 'how', 'essential', 'it', "'s", 'become', 'a', 'one', 'of', 'the', 'first', 'place', 'people', 'go', 'to', ',', 'to', 'get', 'a', 'sense', 'of', 'what', 'people', 'are', 'thinking', 'and', 'what', 'people', 'are', 'saying', 'about', 'any', 'global', 'event', 'It', "'s", 'a', 'lot', 'closer', 'to', 'home', 'right', 'now', 'with', 'a', 'lot', 'of', 'this', 'conversation', 'happening', 'around', 'the', 'U.S', 'election', 'and', 'the', 'administration', 'And', 'that', "'s", 'been', 'amazing', 'to', 'see', 'unfold', 'and', 'definitely', 'been', 'a', 'learning', 'moment', 'for', 'u', 'But', 'I', 'think', 'the', 'thing', 'that', 'constantly', 'inspires', 'me', 'is', 'just', 'how', 'important', ',', 'how', 'essential', 'Twitter', 'continues', 'to', 'become', 'And', 'a', 'I', 'look', 'into', '2017', 'and', 'we', 'look', 'at', 'what', 'we', 'can', 'do', ',', 'I', 'just', 'think', 'the', 'superpower', 'we', 'really', 'provide', 'the', 'world', 'is', 'we', 'can', 'break', 'news', 'and', 'get', 'information', 'to', 'people', 'faster', 'than', 'any', 'other', 'service', 'in', 'the', 'world', 'And', 'in', 'order', 'to', 'do', 'that', ',', 'people', 'have', 'to', 'do', 'just', 'a', 'ton', 'of', 'work', 'right', 'now', 'to', 'dig', 'through', 'everything', 'that', 'may', 'not', 'matter', 'to', 'them', 'to', 'find', 'something', 'that', 'really', 'doe', 'And', 'that', "'s", 'why', 'I', 'am', 'excited', 'about', 'really', 'making', 'sure', 'that', 'we', 'apply', 'artificial', 'intelligence', 'and', 'machine', 'learning', 'in', 'the', 'right', 'way', 'and', 'that', 'we', 'really', 'meet', 'that', 'superpower', 'of', 'being', 'that', 'little', 'bird', 'that', 'told', 'you', 'something', 'that', 'you', 'could', "n't", 'find', 'anywhere', 'else', 'And', 'that', 'when', 'you', 'get', 'into', 'the', 'application', 'and', 'when', 'you', 'get', 'into', 'the', 'service', ',', 'that', 'it', 'is', 'a', 'easy', 'a', 'looking', 'out', 'the', 'window', 'to', 'see', 'what', "'s", 'going', 'on', 'And', 'we', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'We', 'have', 'a', 'lot', 'of', 'tab', 'We', 'have', 'a', 'lot', 'of', 'syntax', 'that', 'we', 'still', 'put', 'in', 'front', 'of', 'people', 'and', 'it', 'should', 'be', 'a', 'easy', 'a', 'just', 'opening', 'up', 'your', 'phone', 'or', 'the', 'webpage', 'and', 'you', 'instantly', 'get', 'a', 'sense', 'of', 'what', 'matter', 'most', ',', 'what', 'people', 'are', 'thinking', 'about', 'it', 'and', 'how', 'to', 'contribute', 'and', 'how', 'to', 'participate', 'And', 'I', 'really', 'believe', 'in', 'and', 'confident', 'that', 'we', 'can', 'get', 'this', 'to', 'something', 'much', 'simpler', 'for', 'everyone', 'within', 'this', 'year', 'and', 'that', 'excites', 'me', 'a', 'lot', 'We', "'ve", 'hit', 'the', '10-year', 'mark', 'We', "'re", 'about', 'to', 'be', '11', 'and', 'this', 'is', 'a', 'company', 'that', 'endures', 'and', 'last', 'and', 'thrives', 'Yeah', 'So', 'in', 'closing', ',', 'a', 'I', 'said', ',', 'I', "'ve", 'never', 'been', 'more', 'sure', 'of', 'the', 'value', 'Twitter', 'brings', 'to', 'people', 'in', 'our', 'world', 'People', 'trust', 'u', 'to', 'carry', 'some', 'of', 'the', 'most', 'important', 'conversation', ',', 'commentary', ',', 'critique', ',', 'event', ',', 'idea', 'and', 'question', 'in', 'the', 'world', 'We', "'ve", 'proven', 'now', 'that', 'our', 'focus', 'work', 'and', 'we', 'need', 'to', 'apply', 'the', 'same', 'approach', 'to', 'our', 'revenue', 'product', 'and', 'help', 'our', 'advertiser', 'In', 'doing', 'so', 'advance', 'u', 'towards', 'our', 'ultimate', 'goal', 'of', 'building', 'a', 'company', 'and', 'service', 'that', 'empowers', 'generation', 'after', 'generation', 'I', 'want', 'to', 'thank', 'you', 'all', 'for', 'your', 'time', ',', 'your', 'support', 'and', 'we', "'ll", 'see', 'you', 'on', 'Twitter']]
['Good', 'morning', 'everyone', 'thanks', 'joining', 'us', 'want', 'start', 'call', 'today']
# Part-Of-Speech (POS) Tagging and Name Entity Recognition (NER)
pos_tokens = nltk.pos_tag(lemma_tokens)
pos_tokens[:10]
ner_tokens = nltk.chunk.ne_chunk(pos_tokens, binary=False)
ner_tokens
The Ghostscript executable isn't found. See http://web.mit.edu/ghostscript/www/Install.htm If you're using a Mac, you can try installing https://docs.brew.sh/Installation then `brew install ghostscript`
--------------------------------------------------------------------------- LookupError Traceback (most recent call last) ~/opt/anaconda3/lib/python3.8/site-packages/nltk/tree.py in _repr_png_(self) 817 [ --> 818 find_binary( 819 "gs", ~/opt/anaconda3/lib/python3.8/site-packages/nltk/internals.py in find_binary(name, path_to_bin, env_vars, searchpath, binary_names, url, verbose) 687 ): --> 688 return next( 689 find_binary_iter( ~/opt/anaconda3/lib/python3.8/site-packages/nltk/internals.py in find_binary_iter(name, path_to_bin, env_vars, searchpath, binary_names, url, verbose) 672 """ --> 673 for file in find_file_iter( 674 path_to_bin or name, env_vars, searchpath, binary_names, url, verbose ~/opt/anaconda3/lib/python3.8/site-packages/nltk/internals.py in find_file_iter(filename, env_vars, searchpath, file_names, url, verbose, finding_dir) 631 div = "=" * 75 --> 632 raise LookupError("\n\n%s\n%s\n%s" % (div, msg, div)) 633 LookupError: =========================================================================== NLTK was unable to find the gs file! Use software specific configuration paramaters or set the PATH environment variable. =========================================================================== The above exception was the direct cause of the following exception: LookupError Traceback (most recent call last) ~/opt/anaconda3/lib/python3.8/site-packages/IPython/core/formatters.py in __call__(self, obj) 343 method = get_real_method(obj, self.print_method) 344 if method is not None: --> 345 return method() 346 return None 347 else: ~/opt/anaconda3/lib/python3.8/site-packages/nltk/tree.py in _repr_png_(self) 835 ) 836 print(pre_error_message, file=sys.stderr) --> 837 raise LookupError from e 838 839 with open(out_path, "rb") as sr: LookupError:
Tree('S', [Tree('GPE', [('Good', 'JJ')]), ('morning', 'NN'), ('everyone', 'NN'), ('thanks', 'NNS'), ('joining', 'VBG'), ('us', 'PRP'), ('want', 'JJ'), ('start', 'NN'), ('call', 'NN'), ('today', 'NN'), ('looking', 'VBG'), ('back', 'RB'), ('2016', 'CD'), ('transformative', 'JJ'), ('year', 'NN'), ('us', 'PRP'), ('Transformations', 'NNP'), ('difficult', 'JJ'), ('one', 'CD'), ('especially', 'RB'), ('challenging', 'VBG'), ('started', 'JJ'), ('2016', 'CD'), ('resetting', 'VBG'), ('focusing', 'VBG'), ('people', 'NNS'), ('use', 'VBP'), Tree('PERSON', [('Twitter', 'NNP')]), ("'s", 'POS'), ('fastest', 'JJS'), ('way', 'NN'), ('see', 'VBP'), ("'s", 'POS'), ('happening', 'VBG'), ('everyone', 'NN'), ('talking', 'VBG'), ('reset', 'VB'), ('refocused', 'JJ'), ('strengths', 'NNS'), ('achieved', 'VBN'), ('one', 'CD'), ('hardest', 'JJS'), ('things', 'NNS'), ('consumer', 'NN'), ('services', 'NNS'), ('scale', 'NN'), ('reversed', 'VBD'), ('reaccelerated', 'JJ'), ('usage', 'NN'), ("'re", 'VBP'), ('thrilled', 'VBN'), ('report', 'JJ'), ('daily', 'RB'), ('active', 'JJ'), ('usage', 'NN'), ('accelerated', 'VBD'), ('third', 'JJ'), ('quarter', 'NN'), ('row', 'NN'), ('see', 'VBP'), ('strong', 'JJ'), ('growth', 'NN'), ('continuing', 'VBG'), ('making', 'VBG'), ('experience', 'NN'), ('little', 'RB'), ('better', 'RBR'), ('every', 'DT'), ('single', 'JJ'), ('day', 'NN'), ('may', 'MD'), ('felt', 'VB'), ('like', 'IN'), ("n't", 'RB'), ('changing', 'VBG'), ('much', 'JJ'), ('past', 'IN'), ('year', 'NN'), ('hundreds', 'NNS'), ('little', 'JJ'), ('changes', 'NNS'), ('added', 'VBD'), ('predictable', 'JJ'), ('sustained', 'JJ'), ('growth', 'NN'), ('use', 'NN'), ('foundation', 'NN'), ('inventive', 'JJ'), ('take', 'NN'), ('bigger', 'JJR'), ('risks', 'NNS'), ("'s", 'POS'), ('exactly', 'RB'), ('going', 'VBG'), ('said', 'VBD'), ('last', 'JJ'), ('call', 'NN'), ('revenue', 'NN'), ('growth', 'NN'), ('lag', 'JJ'), ('usage', 'NN'), ('see', 'VBP'), ('numbers', 'NNS'), ('outlook', 'NN'), ('proven', 'RB'), ('case', 'NN'), ('advertisers', 'NNS'), ('need', 'VBP'), ('approach', 'NN'), ('apply', 'VB'), ('consumer', 'NN'), ('service', 'NN'), ('reset', 'NN'), ('focus', 'NN'), ('strengths', 'NNS'), ('means', 'VBZ'), ('clearly', 'RB'), ('differentiating', 'VBG'), ('complementing', 'VBG'), Tree('PERSON', [('Twitter', 'NNP')]), ("'s", 'POS'), ('real-time', 'JJ'), ('nature', 'NN'), ('proving', 'VBG'), ('advertisers', 'NNS'), ('Twitter', 'NNP'), ('easy', 'VBP'), ('works', 'VBZ'), ('customers', 'NNS'), ('2016', 'CD'), ('challenge', 'NN'), ('reaccelerating', 'VBG'), ('consumer', 'NN'), ('usage', 'NN'), ('gives', 'VBZ'), ('us', 'PRP'), ('confidence', 'NN'), ('2017', 'CD'), ("'s", 'POS'), ('challenge', 'NN'), ('simplifying', 'VBG'), ('differentiating', 'VBG'), ('revenue', 'NN'), ('products', 'NNS'), ('take', 'VBP'), ('time', 'NN'), ('show', 'NN'), ('results', 'NNS'), ('want', 'VBP'), ('see', 'VBP'), ('moving', 'VBG'), ('forward', 'RB'), ('aggressively', 'RB'), ('whole', 'JJ'), ('world', 'NN'), ('watching', 'VBG'), Tree('PERSON', [('Twitter', 'NNP')]), ('may', 'MD'), ('meeting', 'VB'), ('everyone', 'NN'), ("'s", 'POS'), ('growth', 'NN'), ('expectations', 'NNS'), ("'s", 'POS'), ('one', 'CD'), ('thing', 'NN'), ('continues', 'VBZ'), ('grow', 'JJ'), ('outpace', 'NN'), ('peers', 'NNS'), Tree('PERSON', [('Twitter', 'NNP')]), ("'s", 'POS'), ('influence', 'NN'), ('impact', 'NN'), ("n't", 'RB'), ('go', 'VB'), ('day', 'NN'), ('without', 'IN'), ('hearing', 'VBG'), Tree('PERSON', [('Twitter', 'NNP')]), ('used', 'VBD'), ('fastest', 'JJS'), ('way', 'NN'), ('send', 'JJ'), ('message', 'NN'), ('world', 'NN'), ('instant', 'NN'), ('carries', 'VBZ'), ('important', 'JJ'), ('commentary', 'NN'), ('conversations', 'NNS'), ('mobilize', 'VBP'), ('people', 'NNS'), ('action', 'NN'), ("'s", 'POS'), ('powerful', 'JJ'), ("'s", 'POS'), ('valuable', 'NN'), ("'s", 'POS'), ('fundamental', 'NN'), ("'s", 'POS'), ('reason', 'NN'), ("'re", 'VBP'), ('fighting', 'VBG'), ('hard', 'JJ'), ('service', 'NN'), ('company', 'NN'), ('love', 'VB'), ("'s", 'POS'), ('hard', 'JJ'), ('continue', 'VBP'), ('hard', 'EX'), ("'s", 'POS'), ('worth', 'JJ'), Tree('PERSON', [('Twitter', 'NNP')]), ('changed', 'VBD'), ('way', 'NN'), ('world', 'NN'), ('communicates', 'VBZ'), ("'ll", 'MD'), ('back', 'VB'), Tree('GPE', [('Krista', 'NNP')]), ('questions', 'NNS'), Tree('PERSON', [('Hey', 'NNP'), ('John', 'NNP')]), ('thanks', 'NNS'), ('question', 'VBP'), ('spent', 'VBN'), ('lot', 'NN'), ('time', 'NN'), ('2016', 'CD'), ('really', 'RB'), ('focused', 'JJ'), ('making', 'VBG'), ('sure', 'JJ'), ('identified', 'VBN'), ('clarified', 'JJ'), ('team', 'NN'), ('priorities', 'NNS'), ('matters', 'NNS'), ('terms', 'NNS'), ('use', 'VBP'), ('case', 'NN'), ('use', 'NN'), ('case', 'NN'), ('fundamental', 'JJ'), ('Twitter', 'NNP'), ('able', 'JJ'), ('show', 'NN'), ("'s", 'POS'), ('happening', 'VBG'), ('immediately', 'RB'), ('able', 'JJ'), ('get', 'NN'), ('people', 'NNS'), ('news', 'NN'), ('immediately', 'RB'), ('anything', 'NN'), ("'s", 'POS'), ('new', 'JJ'), ('noteworthy', 'NN'), ('also', 'RB'), ('show', 'VBP'), ('commentary', 'JJ'), ('conversations', 'NNS'), ('around', 'IN'), ('led', 'VBD'), ('us', 'PRP'), ('one', 'CD'), ('important', 'JJ'), ('areas', 'NNS'), ('home', 'VBP'), ('timeline', 'NN'), ('making', 'NN'), ('relevant', 'JJ'), ('recent', 'JJ'), ('notifications', 'NNS'), ('making', 'VBG'), ('relevant', 'JJ'), ('tell', 'NN'), ('people', 'NNS'), ("'s", 'POS'), ('breaking', 'VBG'), ('direct', 'JJ'), ('attention', 'NN'), ('easier', 'RBR'), ('onboarding', 'VBG'), ('also', 'RB'), ('easier', 'JJR'), ('ways', 'NNS'), ('tweet', 'VBP'), ("'ve", 'VBP'), ('done', 'VBN'), ('lot', 'NN'), ('work', 'NN'), ('across', 'IN'), ('four', 'CD'), ('areas', 'NNS'), ("'re", 'VBP'), ('really', 'RB'), ('excited', 'JJ'), ("'re", 'VBP'), ('actually', 'RB'), ('seeing', 'VBG'), ('results', 'NNS'), ('well', 'RB'), ('Something', 'VBG'), ('launched', 'VBN'), ('recently', 'RB'), Tree('GPE', [('Explore', 'NNP')]), ('tab', 'NN'), ('different', 'JJ'), ('way', 'NN'), ('organizing', 'VBG'), ('information', 'NN'), Tree('PERSON', [('Twitter', 'NNP')]), ('based', 'VBN'), ('around', 'IN'), ('topics', 'NNS'), ('organized', 'VBN'), ('search', 'NN'), ('moments', 'NNS'), ('trends', 'VBZ'), ('topics', 'NNS'), ('one', 'CD'), ('area', 'NN'), ('could', 'MD'), ('go', 'VB'), ('exhaust', 'JJ'), ('timeline', 'NN'), ('find', 'VBP'), ('new', 'JJ'), ('things', 'NNS'), ('happening', 'VBG'), ('world', 'NN'), ('new', 'JJ'), ('topics', 'NNS'), ('might', 'MD'), ('interested', 'VB'), ('ultimately', 'RB'), ('want', 'JJ'), ('follow', 'JJ'), ('majority', 'NN'), ('effort', 'NN'), ('continue', 'VBP'), ('timeline', 'JJ'), ('notifications', 'NNS'), ('make', 'VBP'), ('simpler', 'NN'), ('easier', 'JJR'), ('people', 'NNS'), ('see', 'VBP'), ("'s", 'POS'), ('happening', 'VBG'), ('also', 'RB'), ('participate', 'VB'), ('converse', 'NN'), ("'re", 'VBP'), ('going', 'VBG'), ('put', 'NN'), ('lot', 'NN'), ('attention', 'NN'), Tree('PERSON', [('Explore', 'NNP')]), ('making', 'NN'), ('sure', 'JJ'), ('show', 'NN'), ('topics', 'NNS'), ('faster', 'RBR'), ('also', 'RB'), ('area', 'NN'), ('show', 'NN'), ('live', 'JJ'), ('streaming', 'NN'), ('games', 'NNS'), ('debates', 'VBZ'), ('elections', 'NNS'), ('events', 'NNS'), ("'s", 'POS'), ('easier', 'JJR'), ('place', 'NN'), ('find', 'VBP'), ('time', 'NN'), ("'s", 'POS'), ('something', 'NN'), ('live', 'JJ'), ('going', 'VBG'), Tree('PERSON', [('Twitter', 'NNP')]), ('topic', 'NN'), ('might', 'MD'), ('find', 'VB'), ('hear', 'JJ'), ('world', 'NN'), ('want', 'VBP'), ('dive', 'JJ'), ('Twitter', 'NNP'), ('well', 'RB'), ("'re", 'VBP'), ('also', 'RB'), ('using', 'VBG'), ('foundation', 'NN'), ('built', 'VBN'), ('2016', 'CD'), ('growth', 'NN'), ('seeing', 'VBG'), ('focus', 'JJ'), ('opportunity', 'NN'), ('take', 'VB'), ('bigger', 'JJR'), ('risks', 'NNS'), ('take', 'VB'), ('bigger', 'JJR'), ('bets', 'NNS'), ('within', 'IN'), ('consumer', 'NN'), ('product', 'NN'), ('well', 'RB'), ('nothing', 'NN'), ('announce', 'NN'), ('today', 'NN'), ('ideas', 'NNS'), ('currently', 'RB'), ('exploring', 'VBG'), Tree('GPE', [('Thank', 'NNP')]), ('terms', 'NNS'), ('bigger', 'JJR'), ('bets', 'NNS'), ('make', 'VBP'), ('big', 'JJ'), ('bet', 'NN'), ('live', 'JJ'), ('streaming', 'VBG'), ('bringing', 'VBG'), ('platform', 'NN'), ('entirely', 'RB'), ('new', 'JJ'), ('experience', 'NN'), ('able', 'JJ'), ('build', 'JJ'), ('three', 'CD'), ('months', 'NNS'), ('executed', 'VBN'), ('really', 'RB'), ('well', 'RB'), ('create', 'VB'), ('experience', 'NN'), ('consistent', 'JJ'), ("'ve", 'VBP'), ('seen', 'VBN'), ('people', 'NNS'), ('use', 'VBP'), Tree('PERSON', [('Twitter', 'NNP')]), ('past', 'IN'), ('10', 'CD'), ('years', 'NNS'), ('commenting', 'VBG'), ('conversation', 'NN'), ('live', 'JJ'), ('event', 'NN'), ('make', 'NN'), ('lot', 'NN'), ('easier', 'JJR'), ('see', 'NN'), ('anywhere', 'RB'), ('train', 'VB'), ('commuting', 'VBG'), ('home', 'NN'), ('commuting', 'NN'), ('work', 'NN'), ('office', 'NN'), ('see', 'VBP'), Tree('ORGANIZATION', [('NFL', 'JJ')]), ('game', 'NN'), ('see', 'VB'), ('debate', 'NN'), ('anywhere', 'RB'), ("'re", 'VBP'), ('looking', 'VBG'), ('patterns', 'NNS'), ("'ve", 'VBP'), ('seen', 'VBN'), ('past', 'IN'), ('10', 'CD'), ('years', 'NNS'), ('people', 'NNS'), ('use', 'VBP'), Tree('PERSON', [('Twitter', 'NNP')]), ('create', 'NN'), ('experiences', 'NNS'), ('around', 'RP'), ('make', 'VBP'), ('easier', 'JJR'), ('share', 'NN'), ("'s", 'POS'), ('happening', 'VBG'), ('talk', 'NN'), ("'s", 'POS'), ('happening', 'VBG'), ('see', 'VB'), ('much', 'JJ'), ('faster', 'RBR'), ('thing', 'NN'), ("'re", 'VBP'), ('investing', 'VBG'), ('lot', 'NN'), ('making', 'VBG'), ('sure', 'JJ'), ('apply', 'VB'), ('machine', 'NN'), ('learning', 'VBG'), ('broadly', 'RB'), ('around', 'IN'), ('entire', 'JJ'), ('experience', 'NN'), ('recently', 'RB'), ('hired', 'VBD'), Tree('PERSON', [('Jan', 'NNP'), ('Peterson', 'NNP')]), ('12:00', 'CD'), ('consolidate', 'NN'), ('science', 'NN'), ('efforts', 'NNS'), ('deep', 'RB'), ('learning', 'VBG'), ('machine', 'NN'), ('learning', 'VBG'), ('artificial', 'JJ'), ('intelligence', 'NN'), ('get', 'NN'), ('lot', 'NN'), ('smarter', 'RBR'), ('provide', 'RB'), ('magical', 'JJ'), ('experiences', 'NNS'), ('people', 'NNS'), ('around', 'IN'), ('showing', 'VBG'), ("'s", 'POS'), ('breaking', 'VBG'), ('real', 'JJ'), ('time', 'NN'), ('giving', 'VBG'), ('sense', 'NN'), ("'s", 'POS'), ('going', 'VBG'), ('without', 'IN'), ('much', 'JJ'), ('work', 'NN'), ('currently', 'RB'), ('platform', 'VBZ'), ("'re", 'VBP'), ('looking', 'VBG'), ('lot', 'NN'), ('opportunities', 'NNS'), ('organize', 'VBP'), ('tweets', 'NNS'), ('around', 'IN'), ('relevance', 'NN'), ('also', 'RB'), ('around', 'IN'), ('topics', 'NNS'), ('interest', 'NN'), ('passions', 'NNS'), ('people', 'NNS'), ('care', 'VBP'), ('really', 'RB'), ('unique', 'JJ'), ('differentiator', 'NN'), ('Twitter', 'NNP'), ('people', 'NNS'), ('come', 'VBP'), ('us', 'PRP'), ('interest', 'NN'), ('build', 'NN'), ('interest', 'NN'), ('networks', 'NNS'), ('around', 'IN'), ('think', 'VBP'), ("'s", 'POS'), ('lot', 'NN'), ('room', 'NN'), ('new', 'JJ'), ('experiences', 'NNS'), ('around', 'RB'), ('seems', 'VBZ'), ('like', 'IN'), ("'s", 'POS'), ('still', 'RB'), ('lot', 'JJ'), ('opportunity', 'NN'), ('see', 'VBP'), ('even', 'RB'), ('make', 'VB'), ('easier', 'JJR'), ('easier', 'JJR'), ('people', 'NNS'), ('tweet', 'VBP'), ('focus', 'JJ'), ('lot', 'NN'), ('topics', 'NNS'), ('people', 'NNS'), ('want', 'VBP'), ('talk', 'NN'), ('participate', 'VB'), Tree('PERSON', [('Youssef', 'NNP')]), ('leadership', 'NN'), ('team', 'NN'), ('late', 'RB'), ('last', 'JJ'), ('year', 'NN'), ('really', 'RB'), ('flattened', 'JJ'), ('organization', 'NN'), ('could', 'MD'), ('elevate', 'VB'), ('engineering', 'NN'), ('product', 'NN'), ('design', 'NN'), ('report', 'NN'), ('directly', 'RB'), ('could', 'MD'), ('lot', 'VB'), ('closer', 'JJR'), ('products', 'NNS'), ('spent', 'VBD'), ('year', 'NN'), ('really', 'RB'), ('going', 'VBG'), ('making', 'VBG'), ('sure', 'JJ'), ('reset', 'JJ'), ('foundation', 'NN'), ("'re", 'VBP'), ('executing', 'VBG'), ('priorities', 'NNS'), ('execute', 'VBP'), ('engineering', 'NN'), ('perspective', 'NN'), ('lot', 'NN'), ('confidence', 'NN'), ('move', 'NN'), ('lot', 'NN'), ('faster', 'RBR'), ('bigger', 'JJR'), ('things', 'NNS'), ('taken', 'VBN'), ('care', 'NN'), ('lot', 'NN'), ('things', 'NNS'), ('simple', 'JJ'), ('enough', 'RB'), ('lot', 'NN'), ('27:25', 'CD'), ('needed', 'VBN'), ('address', 'NN'), ('immediately', 'RB'), ('could', 'MD'), ('develop', 'VB'), ('much', 'JJ'), ('faster', 'RBR'), ('bring', 'VBG'), ('new', 'JJ'), ('experiences', 'NNS'), ('life', 'NN'), ("'m", 'VBP'), ('really', 'RB'), ('confident', 'JJ'), ('team', 'NN'), Tree('PERSON', [('Ed', 'NNP'), ('Ho', 'NNP')]), ('leading', 'VBG'), ('consumer', 'NN'), ('service', 'NN'), ("'s", 'POS'), ('company', 'NN'), ('two', 'CD'), ('years', 'NNS'), ("'s", 'POS'), ('shown', 'VBN'), ('lot', 'NN'), ('great', 'JJ'), ('promise', 'NN'), ('led', 'VBD'), ('lot', 'NN'), ('effort', 'NN'), ('make', 'VBP'), ('sure', 'JJ'), ("'re", 'VBP'), ('focused', 'VBN'), ('right', 'JJ'), ('initiatives', 'NNS'), ('actually', 'RB'), ('reaccelerate', 'VBP'), ('growth', 'NN'), ('proven', 'NN'), ('lot', 'NN'), ('company', 'NN'), ('also', 'RB'), ('team', 'NN'), ("'s", 'POS'), ('also', 'RB'), ('able', 'JJ'), ('attract', 'NN'), ('really', 'RB'), ('senior', 'JJ'), ('product', 'NN'), ('leads', 'VBZ'), ('well', 'RB'), Tree('PERSON', [('Keith', 'NNP'), ('Coleman', 'NNP')]), ('recent', 'JJ'), ('also', 'RB'), ('brought', 'VBD'), ('amazing', 'VBG'), ('engineering', 'NN'), ('team', 'NN'), ('lead', 'JJ'), ('consumer', 'NN'), ('products', 'NNS'), ('efforts', 'NNS'), ("'ve", 'VBP'), ('consolidating', 'VBG'), ('organizations', 'NNS'), ('build', 'VBP'), ('strength', 'NN'), ('notably', 'RB'), ('machine', 'NN'), ('learning', 'VBG'), ('artificial', 'JJ'), ('intelligence', 'NN'), ('efforts', 'NNS'), ('critical', 'JJ'), ('us', 'PRP'), ('able', 'JJ'), ('move', 'NN'), ('much', 'RB'), ('faster', 'RBR'), Tree('PERSON', [('Jan', 'NNP'), ('Peterson', 'NNP')]), ('28:25', 'CD'), ('joined', 'VBD'), ('work', 'NN'), ('get', 'VB'), ('everyone', 'NN'), ('page', 'NN'), ('make', 'VBP'), ('sure', 'JJ'), ('platform', 'NN'), ('internally', 'RB'), ('every', 'DT'), ('team', 'NN'), ('use', 'NN'), ('provide', 'VBP'), ('better', 'RB'), ('magical', 'JJ'), ('experiences', 'NNS'), ('Twitter', 'NNP'), ('machine', 'NN'), ('learning', 'VBG'), ('artificial', 'JJ'), ('intelligence', 'NN'), ('focus', 'NN'), ('team', 'NN'), ('allows', 'VBZ'), ('gives', 'VBZ'), ('lot', 'NN'), ('confidence', 'NN'), ('continue', 'VBP'), ('focus', 'VB'), ('meaningful', 'JJ'), ('things', 'NNS'), ('companies', 'NNS'), ('right', 'RB'), ('prioritization', 'NN'), ('front', 'VBD'), ('us', 'PRP'), ('Thank', 'NNP'), ('first', 'JJ'), ('question', 'NN'), ('would', 'MD'), ('say', 'VB'), ('President', 'NNP'), ("'s", 'POS'), ('use', 'NN'), Tree('PERSON', [('Twitter', 'NNP')]), ('broadened', 'VBD'), ('awareness', 'JJ'), ('platform', 'NN'), ('used', 'VBN'), ('shows', 'VBZ'), ('power', 'NN'), ('Twitter', 'NNP'), ('tweets', 'NNS'), ('sparks', 'VBZ'), ('conversation', 'NN'), ('discussion', 'NN'), ('macro', 'FW'), ('level', 'NN'), ('discussion', 'NN'), ('platform', 'NN'), ('really', 'RB'), ('helps', 'VBZ'), ('us', 'PRP'), ('best', 'RBS'), ('showing', 'VBG'), ("'s", 'POS'), ('happening', 'VBG'), ('world', 'NN'), ('discussions', 'NNS'), ('strengthens', 'VBP'), ('key', 'JJ'), ('differentiators', 'NNS'), ('comprehensive', 'VBP'), ('fast', 'RB'), ('quantitative', 'JJ'), ('perspective', 'NN'), ("'d", 'NNS'), ('say', 'VBP'), ('quarter', 'NN'), ('measure', 'NN'), ('analyze', 'JJ'), ('factors', 'NNS'), ('drive', 'VBP'), ('causal', 'JJ'), ('growth', 'NN'), ('audience', 'NN'), ('coincident', 'NN'), ('growth', 'NN'), ('fourth', 'JJ'), ('quarter', 'NN'), ('primary', 'JJ'), ('driver', 'NN'), ('growth', 'NN'), ('said', 'VBD'), ('earlier', 'JJR'), ('product', 'NN'), ('changes', 'NNS'), ('marketing', 'VBG'), ('also', 'RB'), ('look', 'VBP'), ('couple', 'JJ'), ('factors', 'NNS'), ('see', 'VBP'), ("'s", 'POS'), ('significant', 'JJ'), ('changes', 'NNS'), ('trendlines', 'NNS'), ("'re", 'VBP'), ('top', 'JJ'), ('funnel', 'NN'), ('one', 'CD'), ('areas', 'NNS'), ('could', 'MD'), ("'ve", 'VBP'), ('benefited', 'VBN'), ('see', 'VBP'), ('benefit', 'JJ'), ('top', 'JJ'), ('funnel', 'NN'), ('activity', 'NN'), ('throughout', 'IN'), ('election', 'NN'), ('time', 'NN'), ('period', 'NN'), ('relates', 'VBZ'), ('impressions', 'NNS'), ('growth', 'NN'), ('another', 'DT'), ('area', 'NN'), ('look', 'NN'), ('mentioned', 'VBN'), ('earlier', 'RBR'), ('magnitude', 'JJ'), ('impressions', 'NNS'), ('platform', 'VBP'), ('large', 'JJ'), ("'d", 'MD'), ('hard', 'VB'), ('event', 'NN'), ('single', 'JJ'), ('person', 'NN'), ('drive', 'NN'), ('sustained', 'VBD'), ('growth', 'NN'), ('impressions', 'NNS'), ('growth', 'NN'), ('said', 'VBD'), ('world', 'NN'), ("'s", 'POS'), ('leaders', 'NNS'), ('platform', 'VBP'), ('talking', 'VBG'), ('global', 'JJ'), ('issues', 'NNS'), ('people', 'NNS'), ('passionately', 'RB'), ('expressing', 'VBG'), ('points', 'NNS'), ('view', 'NN'), ("'s", 'POS'), ('positive', 'JJ'), Tree('PERSON', [('Twitter', 'NNP')]), ("'s", 'POS'), ("'re", 'VBP'), ('focused', 'JJ'), ('time', 'NN'), ('drive', 'NN'), ('faster', 'RBR'), ('distribution', 'NN'), ('content', 'NN'), ('comprehensive', 'JJ'), ('content', 'JJ'), ('discussion', 'NN'), ('personalization', 'NN'), ("'re", 'VBP'), ('better', 'RBR'), ('delivering', 'VBG'), ("'s", 'POS'), ('happening', 'VBG'), ('world', 'NN'), ("'s", 'POS'), ('talked', 'NNS'), ('ca', 'MD'), ("n't", 'RB'), ('quantify', 'VB'), ('impact', 'VB'), ('point', 'JJ'), ('time', 'NN'), ("'ll", 'MD'), ('continue', 'VB'), ('analyze', 'RB'), ('go', 'VB'), ('Q1', 'NNP'), ('talk', 'VB'), ('end', 'JJ'), ('quarter', 'NN'), ('relates', 'VBZ'), ('second', 'JJ'), ('question', 'NN'), ('listen', 'FW'), ('environment', 'NN'), ('definitely', 'RB'), ('competitive', 'JJ'), ('throughout', 'IN'), ('2016', 'CD'), ('2015', 'CD'), ('prior', 'JJ'), ('calls', 'NNS'), ("'ve", 'VBP'), ('talked', 'VBN'), ('fact', 'NN'), ('large-scale', 'JJ'), ('players', 'NNS'), ('digital', 'JJ'), ('advertising', 'NN'), ('social', 'JJ'), ('advertising', 'NN'), ('budgets', 'NNS'), ('prior', 'VBP'), ('years', 'NNS'), ("'s", 'POS'), ('increased', 'VBN'), ('throughout', 'IN'), ('2016', 'CD'), ('2017', 'CD'), ('think', 'NN'), ('saw', 'VBD'), ('mid-January', 'JJ'), ('relates', 'NNS'), ('acceleration', 'VBP'), ('competitive', 'JJ'), ('factors', 'NNS'), ("'s", 'POS'), ('really', 'RB'), ('advertisers', 'NNS'), ('start', 'VBP'), ('ramp', 'VB'), ('spending', 'NN'), ('coming', 'VBG'), ('fourth', 'JJ'), ('quarter', 'NN'), ('February', 'NNP'), ('time', 'NN'), ('period', 'NN'), ('historically', 'RB'), ('35', 'CD'), ('40', 'CD'), ('versus', 'NN'), ('January', 'NNP'), ('ramp', 'NN'), ('really', 'RB'), ('starts', 'VBZ'), ('mid-January', 'JJ'), ('February', 'NNP'), ("'s", 'POS'), ('saw', 'JJ'), ('marketplace', 'NN'), ('challenges', 'VBZ'), ('ability', 'NN'), ('attract', 'JJ'), ('demand', 'NN'), ('advertisers', 'NNS'), ('think', 'VBP'), ("'s", 'POS'), ('number', 'NN'), ('factors', 'NNS'), ('behind', 'IN'), ('players', 'NNS'), ('innovation', 'VBP'), ('competitors', 'NNS'), ('lot', 'VBP'), ('stake', 'NN'), ('moment', 'NN'), ('time', 'NN'), ('good', 'JJ'), ('news', 'NN'), ('revenue', 'NN'), ('follows', 'VBZ'), ('audience', 'NN'), ("'re", 'VBP'), ('seeing', 'VBG'), ('acceleration', 'NN'), ('audience', 'NN'), ('growth', 'NN'), ('want', 'VBP'), ('translate', 'NN'), ('revenue', 'NN'), ('dollars', 'NNS'), ('requires', 'VBZ'), ('us', 'PRP'), ('proving', 'VBG'), Tree('ORGANIZATION', [('ROI', 'NNP')]), ("'re", 'VBP'), ('process', 'NN'), ('advertisers', 'NNS'), ('addition', 'NN'), ("'re", 'VBP'), ('focused', 'VBN'), ('revenue', 'NN'), ('streams', 'NNS'), ('ad', 'NN'), ('driven', 'VBN'), ('areas', 'NNS'), ('low', 'JJ'), ('hanging', 'VBG'), ('opportunity', 'NN'), ('audiences', 'NNS'), ("n't", 'RB'), ('monetized', 'VBD'), ('final', 'JJ'), ('point', 'NN'), ("'d", 'MD'), ('make', 'VB'), ("'re", 'VBP'), ('video', 'NN'), ('positions', 'NNS'), ('us', 'PRP'), ('capture', 'VBP'), ('ad', 'NN'), ('dollars', 'NNS'), ('competitive', 'JJ'), ('digital', 'JJ'), ('advertising', 'NN'), ('bucket', 'NN'), ("'ve", 'VBP'), ('started', 'VBN'), ('tap', 'JJ'), ('dollars', 'NNS'), ('live', 'VBP'), ('video', 'NN'), ('product', 'NN'), ("'ll", 'MD'), ('continue', 'VB'), ('invest', 'JJS'), ('area', 'NN'), ('well', 'RB'), ('Yes', 'NNP'), ('focus', 'NN'), ('lot', 'NN'), ('attention', 'NN'), ('early', 'JJ'), ('building', 'NN'), ('live', 'JJ'), ('events', 'NNS'), ('live', 'JJ'), ('premium', 'JJ'), ('video', 'NN'), ('experience', 'NN'), Tree('PERSON', [('Anthony', 'NNP')]), ('said', 'VBD'), ('earlier', 'RBR'), ('focus', 'NN'), ('making', 'VBG'), ('sure', 'JJ'), ('connecting', 'VBG'), ('people', 'NNS'), ('faster', 'RBR'), ('interests', 'NNS'), ('topics', 'NNS'), ('care', 'NN'), ('includes', 'VBZ'), ('able', 'JJ'), ('watch', 'NN'), ('event', 'NN'), ('directly', 'RB'), Tree('PERSON', [('Twitter', 'NNP'), ('Explore', 'NNP')]), ('tab', 'VBD'), ('one', 'CD'), ('area', 'NN'), ("'ll", 'MD'), ('able', 'JJ'), ('go', 'VB'), ('live', 'JJ'), ('event', 'NN'), ("'re", 'VBP'), ('also', 'RB'), ('looking', 'VBG'), ('areas', 'NNS'), ('gets', 'VBZ'), ('much', 'RB'), ('faster', 'RBR'), ('express', 'JJ'), ('interest', 'NN'), ('debate', 'NN'), ('instance', 'NN'), ('game', 'NN'), ('new', 'JJ'), ('show', 'NN'), ('entertainment', 'NN'), ('focus', 'NN'), ('team', 'NN'), ('something', 'NN'), ("'re", 'VBP'), ('going', 'VBG'), ('make', 'NN'), ('lot', 'NN'), ('progress', 'IN'), ('year', 'NN'), Tree('PERSON', [('Anthony', 'NNP')]), ('said', 'VBD'), ('focused', 'JJ'), ('2016', 'CD'), ('making', 'VBG'), ('sure', 'JJ'), ('really', 'RB'), ('aligned', 'VBN'), ('around', 'IN'), ('one', 'CD'), ('use', 'NN'), ('case', 'NN'), ('showing', 'VBG'), ("'s", 'POS'), ('happening', 'VBG'), ('anyone', 'NN'), ('else', 'RB'), ('best', 'JJS'), ('place', 'NN'), ('get', 'VB'), ('news', 'NN'), ('conversation', 'NN'), ('commentary', 'NN'), ("'s", 'POS'), ('going', 'VBG'), ('world', 'NN'), ('made', 'VBD'), ('tough', 'JJ'), ('choices', 'NNS'), Tree('PERSON', [('Fabric', 'NNP')]), ('also', 'RB'), ('things', 'NNS'), ('like', 'IN'), Tree('PERSON', [('Vine', 'NNP')]), ('could', 'MD'), ('make', 'VB'), ('sure', 'JJ'), ("'re", 'VBP'), ('putting', 'VBG'), ('effort', 'NN'), ('behind', 'IN'), Tree('PERSON', [('Twitter', 'NNP')]), ('made', 'VBD'), Tree('PERSON', [('Twitter', 'NNP')]), ('great', 'JJ'), ('past', 'JJ'), ('10', 'CD'), ('years', 'NNS'), ('looking', 'VBG'), ('new', 'JJ'), ('opportunities', 'NNS'), ('extend', 'VBP'), ('use', 'NN'), ('case', 'NN'), ('extend', 'VBP'), ('sense', 'NN'), ("'s", 'POS'), ('happening', 'VBG'), ('live', 'JJ'), ('video', 'NN'), ('big', 'JJ'), ('focus', 'NN'), ('well', 'RB'), ('everything', 'NN'), ("'re", 'VBP'), ('around', 'IN'), ('live', 'JJ'), ('streaming', 'NN'), ('premium', 'NN'), ('video', 'NN'), ('within', 'IN'), ('app', 'NN'), ('also', 'RB'), ('individual-created', 'JJ'), ('live-streaming', 'JJ'), ('video', 'NN'), Tree('PERSON', [('Periscope', 'NNP')]), ('majority', 'NN'), ('focus', 'NN'), ('wanted', 'VBD'), ('cut', 'NN'), ('everything', 'NN'), ('go', 'VBP'), ('matter', 'NN'), Tree('GPE', [('Brian', 'NNP')]), ('would', 'MD'), ('say', 'VB'), ('–', 'JJ'), ("n't", 'RB'), ('know', 'VBP'), ("'s", 'POS'), ('surprising', 'JJ'), ('every', 'DT'), ('single', 'JJ'), ('year', 'NN'), ('fact', 'NN'), Tree('PERSON', [('Twitter', 'NNP')]), ('grows', 'VBZ'), ('impact', 'JJ'), ('influence', 'NN'), ('instrumental', 'JJ'), ('global', 'JJ'), ('conversation', 'NN'), ('essential', 'NN'), ("'s", 'POS'), ('become', 'NN'), ('one', 'CD'), ('first', 'JJ'), ('places', 'VBZ'), ('people', 'NNS'), ('go', 'VBP'), ('get', 'VB'), ('sense', 'NN'), ('people', 'NNS'), ('thinking', 'VBG'), ('people', 'NNS'), ('saying', 'VBG'), ('global', 'JJ'), ('event', 'NN'), ("'s", 'POS'), ('lot', 'NN'), ('closer', 'RBR'), ('home', 'NN'), ('right', 'NN'), ('lot', 'NN'), ('conversation', 'NN'), ('happening', 'VBG'), ('around', 'IN'), Tree('GPE', [('U.S', 'NNP')]), ('election', 'NN'), ('administration', 'NN'), ("'s", 'POS'), ('amazing', 'JJ'), ('see', 'NN'), ('unfold', 'JJ'), ('definitely', 'RB'), ('learning', 'VBG'), ('moment', 'NN'), ('us', 'PRP'), ('think', 'VBP'), ('thing', 'NN'), ('constantly', 'RB'), ('inspires', 'VBZ'), ('important', 'JJ'), ('essential', 'JJ'), ('Twitter', 'NN'), ('continues', 'VBZ'), ('become', 'VBN'), ('look', 'NN'), ('2017', 'CD'), ('look', 'NN'), ('think', 'VBP'), ('superpower', 'JJR'), ('really', 'RB'), ('provide', 'VB'), ('world', 'NN'), ('break', 'NN'), ('news', 'NN'), ('get', 'VB'), ('information', 'NN'), ('people', 'NNS'), ('faster', 'RBR'), ('service', 'NN'), ('world', 'NN'), ('order', 'NN'), ('people', 'NNS'), ('ton', 'VBP'), ('work', 'NN'), ('right', 'RB'), ('dig', 'VBZ'), ('everything', 'NN'), ('may', 'MD'), ('matter', 'VB'), ('find', 'VB'), ('something', 'NN'), ('really', 'RB'), ("'s", 'POS'), ('excited', 'VBN'), ('really', 'RB'), ('making', 'VBG'), ('sure', 'JJ'), ('apply', 'VB'), ('artificial', 'JJ'), ('intelligence', 'NN'), ('machine', 'NN'), ('learning', 'VBG'), ('right', 'JJ'), ('ways', 'NNS'), ('really', 'RB'), ('meet', 'VB'), ('superpower', 'JJR'), ('little', 'JJ'), ('bird', 'NN'), ('told', 'VBD'), ('something', 'NN'), ('could', 'MD'), ("n't", 'RB'), ('find', 'VB'), ('anywhere', 'JJ'), ('else', 'RB'), ('get', 'VB'), ('application', 'NN'), ('get', 'VB'), ('service', 'NN'), ('easy', 'JJ'), ('looking', 'VBG'), ('window', 'NN'), ('see', 'NN'), ("'s", 'POS'), ('going', 'VBG'), ('lot', 'NN'), ('work', 'NN'), ('lot', 'NN'), ('tabs', 'NNS'), ('lot', 'NN'), ('syntax', 'NN'), ('still', 'RB'), ('put', 'VBD'), ('front', 'JJ'), ('people', 'NNS'), ('easy', 'JJ'), ('opening', 'VBG'), ('phone', 'NN'), ('webpage', 'NN'), ('instantly', 'RB'), ('get', 'VB'), ('sense', 'NN'), ('matters', 'NNS'), ('people', 'NNS'), ('thinking', 'VBG'), ('contribute', 'JJ'), ('participate', 'NN'), ('really', 'RB'), ('believe', 'VB'), ('confident', 'JJ'), ('get', 'VB'), ('something', 'NN'), ('much', 'JJ'), ('simpler', 'NN'), ('everyone', 'NN'), ('within', 'IN'), ('year', 'NN'), ('excites', 'NNS'), ('lot', 'VBP'), ("'ve", 'VBP'), ('hit', 'VBN'), ('10-year', 'JJ'), ('mark', 'NN'), ("'re", 'VBP'), ('11', 'CD'), ('company', 'NN'), ('endures', 'VBZ'), ('lasts', 'VBZ'), ('thrives', 'NNS'), ('Yeah', 'NNP'), ('closing', 'NN'), ('said', 'VBD'), ("'ve", 'VBP'), ('never', 'RB'), ('sure', 'JJ'), ('value', 'NN'), Tree('PERSON', [('Twitter', 'NNP')]), ('brings', 'VBZ'), ('people', 'NNS'), ('world', 'NN'), ('People', 'NNPS'), ('trust', 'VBP'), ('us', 'PRP'), ('carry', 'VBP'), ('important', 'JJ'), ('conversations', 'NNS'), ('commentary', 'VBP'), ('critique', 'JJ'), ('events', 'NNS'), ('ideas', 'NNS'), ('questions', 'NNS'), ('world', 'NN'), ("'ve", 'VBP'), ('proven', 'VBN'), ('focus', 'NN'), ('works', 'NNS'), ('need', 'VBP'), ('apply', 'VB'), ('approach', 'NN'), ('revenue', 'NN'), ('products', 'NNS'), ('help', 'VBP'), ('advertisers', 'NNS'), ('advances', 'NNS'), ('us', 'PRP'), ('towards', 'VBP'), ('ultimate', 'JJ'), ('goal', 'NN'), ('building', 'VBG'), ('company', 'NN'), ('service', 'NN'), ('empowers', 'NNS'), ('generation', 'NN'), ('generation', 'NN'), ('want', 'VBP'), ('thank', 'NN'), ('time', 'NN'), ('support', 'NN'), ("'ll", 'MD'), ('see', 'VB'), Tree('PERSON', [('Twitter', 'NNP')])])
# Chunking
from nltk.chunk import tree2conlltags, conlltags2tree
iob_tagged = tree2conlltags(ner_tokens)
# print(iob_tagged)
reg1 = "NP: {<DT>?<JJ>*<NN>}"
reg2 = "VP: {<JJ|RB>*<VB|VBP|VBG|VBN|VBD|VBZ>}"
cp = nltk.RegexpParser(reg1)
cp2 = nltk.RegexpParser(reg2)
cs = cp.parse(iob_tagged)
cs2 = cp2.parse(cs)
print(cs)
(S (NP Good/JJ/B-GPE morning/NN/O) (NP everyone/NN/O) thanks/NNS/O joining/VBG/O us/PRP/O (NP want/JJ/O start/NN/O) (NP call/NN/O) (NP today/NN/O) looking/VBG/O back/RB/O 2016/CD/O (NP transformative/JJ/O year/NN/O) us/PRP/O Transformations/NNP/O difficult/JJ/O one/CD/O especially/RB/O challenging/VBG/O started/JJ/O 2016/CD/O resetting/VBG/O focusing/VBG/O people/NNS/O use/VBP/O Twitter/NNP/B-PERSON 's/POS/O fastest/JJS/O (NP way/NN/O) see/VBP/O 's/POS/O happening/VBG/O (NP everyone/NN/O) talking/VBG/O reset/VB/O refocused/JJ/O strengths/NNS/O achieved/VBN/O one/CD/O hardest/JJS/O things/NNS/O (NP consumer/NN/O) services/NNS/O (NP scale/NN/O) reversed/VBD/O (NP reaccelerated/JJ/O usage/NN/O) 're/VBP/O thrilled/VBN/O report/JJ/O daily/RB/O (NP active/JJ/O usage/NN/O) accelerated/VBD/O (NP third/JJ/O quarter/NN/O) (NP row/NN/O) see/VBP/O (NP strong/JJ/O growth/NN/O) continuing/VBG/O making/VBG/O (NP experience/NN/O) little/RB/O better/RBR/O (NP every/DT/O single/JJ/O day/NN/O) may/MD/O felt/VB/O like/IN/O n't/RB/O changing/VBG/O much/JJ/O past/IN/O (NP year/NN/O) hundreds/NNS/O little/JJ/O changes/NNS/O added/VBD/O (NP predictable/JJ/O sustained/JJ/O growth/NN/O) (NP use/NN/O) (NP foundation/NN/O) (NP inventive/JJ/O take/NN/O) bigger/JJR/O risks/NNS/O 's/POS/O exactly/RB/O going/VBG/O said/VBD/O (NP last/JJ/O call/NN/O) (NP revenue/NN/O) (NP growth/NN/O) (NP lag/JJ/O usage/NN/O) see/VBP/O numbers/NNS/O (NP outlook/NN/O) proven/RB/O (NP case/NN/O) advertisers/NNS/O need/VBP/O (NP approach/NN/O) apply/VB/O (NP consumer/NN/O) (NP service/NN/O) (NP reset/NN/O) (NP focus/NN/O) strengths/NNS/O means/VBZ/O clearly/RB/O differentiating/VBG/O complementing/VBG/O Twitter/NNP/B-PERSON 's/POS/O (NP real-time/JJ/O nature/NN/O) proving/VBG/O advertisers/NNS/O Twitter/NNP/O easy/VBP/O works/VBZ/O customers/NNS/O 2016/CD/O (NP challenge/NN/O) reaccelerating/VBG/O (NP consumer/NN/O) (NP usage/NN/O) gives/VBZ/O us/PRP/O (NP confidence/NN/O) 2017/CD/O 's/POS/O (NP challenge/NN/O) simplifying/VBG/O differentiating/VBG/O (NP revenue/NN/O) products/NNS/O take/VBP/O (NP time/NN/O) (NP show/NN/O) results/NNS/O want/VBP/O see/VBP/O moving/VBG/O forward/RB/O aggressively/RB/O (NP whole/JJ/O world/NN/O) watching/VBG/O Twitter/NNP/B-PERSON may/MD/O meeting/VB/O (NP everyone/NN/O) 's/POS/O (NP growth/NN/O) expectations/NNS/O 's/POS/O one/CD/O (NP thing/NN/O) continues/VBZ/O (NP grow/JJ/O outpace/NN/O) peers/NNS/O Twitter/NNP/B-PERSON 's/POS/O (NP influence/NN/O) (NP impact/NN/O) n't/RB/O go/VB/O (NP day/NN/O) without/IN/O hearing/VBG/O Twitter/NNP/B-PERSON used/VBD/O fastest/JJS/O (NP way/NN/O) (NP send/JJ/O message/NN/O) (NP world/NN/O) (NP instant/NN/O) carries/VBZ/O (NP important/JJ/O commentary/NN/O) conversations/NNS/O mobilize/VBP/O people/NNS/O (NP action/NN/O) 's/POS/O powerful/JJ/O 's/POS/O (NP valuable/NN/O) 's/POS/O (NP fundamental/NN/O) 's/POS/O (NP reason/NN/O) 're/VBP/O fighting/VBG/O (NP hard/JJ/O service/NN/O) (NP company/NN/O) love/VB/O 's/POS/O hard/JJ/O continue/VBP/O hard/EX/O 's/POS/O worth/JJ/O Twitter/NNP/B-PERSON changed/VBD/O (NP way/NN/O) (NP world/NN/O) communicates/VBZ/O 'll/MD/O back/VB/O Krista/NNP/B-GPE questions/NNS/O Hey/NNP/B-PERSON John/NNP/I-PERSON thanks/NNS/O question/VBP/O spent/VBN/O (NP lot/NN/O) (NP time/NN/O) 2016/CD/O really/RB/O focused/JJ/O making/VBG/O sure/JJ/O identified/VBN/O (NP clarified/JJ/O team/NN/O) priorities/NNS/O matters/NNS/O terms/NNS/O use/VBP/O (NP case/NN/O) (NP use/NN/O) (NP case/NN/O) fundamental/JJ/O Twitter/NNP/O (NP able/JJ/O show/NN/O) 's/POS/O happening/VBG/O immediately/RB/O (NP able/JJ/O get/NN/O) people/NNS/O (NP news/NN/O) immediately/RB/O (NP anything/NN/O) 's/POS/O (NP new/JJ/O noteworthy/NN/O) also/RB/O show/VBP/O commentary/JJ/O conversations/NNS/O around/IN/O led/VBD/O us/PRP/O one/CD/O important/JJ/O areas/NNS/O home/VBP/O (NP timeline/NN/O) (NP making/NN/O) relevant/JJ/O recent/JJ/O notifications/NNS/O making/VBG/O (NP relevant/JJ/O tell/NN/O) people/NNS/O 's/POS/O breaking/VBG/O (NP direct/JJ/O attention/NN/O) easier/RBR/O onboarding/VBG/O also/RB/O easier/JJR/O ways/NNS/O tweet/VBP/O 've/VBP/O done/VBN/O (NP lot/NN/O) (NP work/NN/O) across/IN/O four/CD/O areas/NNS/O 're/VBP/O really/RB/O excited/JJ/O 're/VBP/O actually/RB/O seeing/VBG/O results/NNS/O well/RB/O Something/VBG/O launched/VBN/O recently/RB/O Explore/NNP/B-GPE (NP tab/NN/O) (NP different/JJ/O way/NN/O) organizing/VBG/O (NP information/NN/O) Twitter/NNP/B-PERSON based/VBN/O around/IN/O topics/NNS/O organized/VBN/O (NP search/NN/O) moments/NNS/O trends/VBZ/O topics/NNS/O one/CD/O (NP area/NN/O) could/MD/O go/VB/O (NP exhaust/JJ/O timeline/NN/O) find/VBP/O new/JJ/O things/NNS/O happening/VBG/O (NP world/NN/O) new/JJ/O topics/NNS/O might/MD/O interested/VB/O ultimately/RB/O (NP want/JJ/O follow/JJ/O majority/NN/O) (NP effort/NN/O) continue/VBP/O timeline/JJ/O notifications/NNS/O make/VBP/O (NP simpler/NN/O) easier/JJR/O people/NNS/O see/VBP/O 's/POS/O happening/VBG/O also/RB/O participate/VB/O (NP converse/NN/O) 're/VBP/O going/VBG/O (NP put/NN/O) (NP lot/NN/O) (NP attention/NN/O) Explore/NNP/B-PERSON (NP making/NN/O) (NP sure/JJ/O show/NN/O) topics/NNS/O faster/RBR/O also/RB/O (NP area/NN/O) (NP show/NN/O) (NP live/JJ/O streaming/NN/O) games/NNS/O debates/VBZ/O elections/NNS/O events/NNS/O 's/POS/O easier/JJR/O (NP place/NN/O) find/VBP/O (NP time/NN/O) 's/POS/O (NP something/NN/O) live/JJ/O going/VBG/O Twitter/NNP/B-PERSON (NP topic/NN/O) might/MD/O find/VB/O (NP hear/JJ/O world/NN/O) want/VBP/O dive/JJ/O Twitter/NNP/O well/RB/O 're/VBP/O also/RB/O using/VBG/O (NP foundation/NN/O) built/VBN/O 2016/CD/O (NP growth/NN/O) seeing/VBG/O (NP focus/JJ/O opportunity/NN/O) take/VB/O bigger/JJR/O risks/NNS/O take/VB/O bigger/JJR/O bets/NNS/O within/IN/O (NP consumer/NN/O) (NP product/NN/O) well/RB/O (NP nothing/NN/O) (NP announce/NN/O) (NP today/NN/O) ideas/NNS/O currently/RB/O exploring/VBG/O Thank/NNP/B-GPE terms/NNS/O bigger/JJR/O bets/NNS/O make/VBP/O (NP big/JJ/O bet/NN/O) live/JJ/O streaming/VBG/O bringing/VBG/O (NP platform/NN/O) entirely/RB/O (NP new/JJ/O experience/NN/O) able/JJ/O build/JJ/O three/CD/O months/NNS/O executed/VBN/O really/RB/O well/RB/O create/VB/O (NP experience/NN/O) consistent/JJ/O 've/VBP/O seen/VBN/O people/NNS/O use/VBP/O Twitter/NNP/B-PERSON past/IN/O 10/CD/O years/NNS/O commenting/VBG/O (NP conversation/NN/O) (NP live/JJ/O event/NN/O) (NP make/NN/O) (NP lot/NN/O) easier/JJR/O (NP see/NN/O) anywhere/RB/O train/VB/O commuting/VBG/O (NP home/NN/O) (NP commuting/NN/O) (NP work/NN/O) (NP office/NN/O) see/VBP/O (NP NFL/JJ/B-ORGANIZATION game/NN/O) see/VB/O (NP debate/NN/O) anywhere/RB/O 're/VBP/O looking/VBG/O patterns/NNS/O 've/VBP/O seen/VBN/O past/IN/O 10/CD/O years/NNS/O people/NNS/O use/VBP/O Twitter/NNP/B-PERSON (NP create/NN/O) experiences/NNS/O around/RP/O make/VBP/O easier/JJR/O (NP share/NN/O) 's/POS/O happening/VBG/O (NP talk/NN/O) 's/POS/O happening/VBG/O see/VB/O much/JJ/O faster/RBR/O (NP thing/NN/O) 're/VBP/O investing/VBG/O (NP lot/NN/O) making/VBG/O sure/JJ/O apply/VB/O (NP machine/NN/O) learning/VBG/O broadly/RB/O around/IN/O (NP entire/JJ/O experience/NN/O) recently/RB/O hired/VBD/O Jan/NNP/B-PERSON Peterson/NNP/I-PERSON 12:00/CD/O (NP consolidate/NN/O) (NP science/NN/O) efforts/NNS/O deep/RB/O learning/VBG/O (NP machine/NN/O) learning/VBG/O (NP artificial/JJ/O intelligence/NN/O) (NP get/NN/O) (NP lot/NN/O) smarter/RBR/O provide/RB/O magical/JJ/O experiences/NNS/O people/NNS/O around/IN/O showing/VBG/O 's/POS/O breaking/VBG/O (NP real/JJ/O time/NN/O) giving/VBG/O (NP sense/NN/O) 's/POS/O going/VBG/O without/IN/O (NP much/JJ/O work/NN/O) currently/RB/O platform/VBZ/O 're/VBP/O looking/VBG/O (NP lot/NN/O) opportunities/NNS/O organize/VBP/O tweets/NNS/O around/IN/O (NP relevance/NN/O) also/RB/O around/IN/O topics/NNS/O (NP interest/NN/O) passions/NNS/O people/NNS/O care/VBP/O really/RB/O (NP unique/JJ/O differentiator/NN/O) Twitter/NNP/O people/NNS/O come/VBP/O us/PRP/O (NP interest/NN/O) (NP build/NN/O) (NP interest/NN/O) networks/NNS/O around/IN/O think/VBP/O 's/POS/O (NP lot/NN/O) (NP room/NN/O) new/JJ/O experiences/NNS/O around/RB/O seems/VBZ/O like/IN/O 's/POS/O still/RB/O (NP lot/JJ/O opportunity/NN/O) see/VBP/O even/RB/O make/VB/O easier/JJR/O easier/JJR/O people/NNS/O tweet/VBP/O (NP focus/JJ/O lot/NN/O) topics/NNS/O people/NNS/O want/VBP/O (NP talk/NN/O) participate/VB/O Youssef/NNP/B-PERSON (NP leadership/NN/O) (NP team/NN/O) late/RB/O (NP last/JJ/O year/NN/O) really/RB/O (NP flattened/JJ/O organization/NN/O) could/MD/O elevate/VB/O (NP engineering/NN/O) (NP product/NN/O) (NP design/NN/O) (NP report/NN/O) directly/RB/O could/MD/O lot/VB/O closer/JJR/O products/NNS/O spent/VBD/O (NP year/NN/O) really/RB/O going/VBG/O making/VBG/O (NP sure/JJ/O reset/JJ/O foundation/NN/O) 're/VBP/O executing/VBG/O priorities/NNS/O execute/VBP/O (NP engineering/NN/O) (NP perspective/NN/O) (NP lot/NN/O) (NP confidence/NN/O) (NP move/NN/O) (NP lot/NN/O) faster/RBR/O bigger/JJR/O things/NNS/O taken/VBN/O (NP care/NN/O) (NP lot/NN/O) things/NNS/O simple/JJ/O enough/RB/O (NP lot/NN/O) 27:25/CD/O needed/VBN/O (NP address/NN/O) immediately/RB/O could/MD/O develop/VB/O much/JJ/O faster/RBR/O bring/VBG/O new/JJ/O experiences/NNS/O (NP life/NN/O) 'm/VBP/O really/RB/O (NP confident/JJ/O team/NN/O) Ed/NNP/B-PERSON Ho/NNP/I-PERSON leading/VBG/O (NP consumer/NN/O) (NP service/NN/O) 's/POS/O (NP company/NN/O) two/CD/O years/NNS/O 's/POS/O shown/VBN/O (NP lot/NN/O) (NP great/JJ/O promise/NN/O) led/VBD/O (NP lot/NN/O) (NP effort/NN/O) make/VBP/O sure/JJ/O 're/VBP/O focused/VBN/O right/JJ/O initiatives/NNS/O actually/RB/O reaccelerate/VBP/O (NP growth/NN/O) (NP proven/NN/O) (NP lot/NN/O) (NP company/NN/O) also/RB/O (NP team/NN/O) 's/POS/O also/RB/O (NP able/JJ/O attract/NN/O) really/RB/O (NP senior/JJ/O product/NN/O) leads/VBZ/O well/RB/O Keith/NNP/B-PERSON Coleman/NNP/I-PERSON recent/JJ/O also/RB/O brought/VBD/O amazing/VBG/O (NP engineering/NN/O) (NP team/NN/O) (NP lead/JJ/O consumer/NN/O) products/NNS/O efforts/NNS/O 've/VBP/O consolidating/VBG/O organizations/NNS/O build/VBP/O (NP strength/NN/O) notably/RB/O (NP machine/NN/O) learning/VBG/O (NP artificial/JJ/O intelligence/NN/O) efforts/NNS/O critical/JJ/O us/PRP/O (NP able/JJ/O move/NN/O) much/RB/O faster/RBR/O Jan/NNP/B-PERSON Peterson/NNP/I-PERSON 28:25/CD/O joined/VBD/O (NP work/NN/O) get/VB/O (NP everyone/NN/O) (NP page/NN/O) make/VBP/O (NP sure/JJ/O platform/NN/O) internally/RB/O (NP every/DT/O team/NN/O) (NP use/NN/O) provide/VBP/O better/RB/O magical/JJ/O experiences/NNS/O Twitter/NNP/O (NP machine/NN/O) learning/VBG/O (NP artificial/JJ/O intelligence/NN/O) (NP focus/NN/O) (NP team/NN/O) allows/VBZ/O gives/VBZ/O (NP lot/NN/O) (NP confidence/NN/O) continue/VBP/O focus/VB/O meaningful/JJ/O things/NNS/O companies/NNS/O right/RB/O (NP prioritization/NN/O) front/VBD/O us/PRP/O Thank/NNP/O (NP first/JJ/O question/NN/O) would/MD/O say/VB/O President/NNP/O 's/POS/O (NP use/NN/O) Twitter/NNP/B-PERSON broadened/VBD/O (NP awareness/JJ/O platform/NN/O) used/VBN/O shows/VBZ/O (NP power/NN/O) Twitter/NNP/O tweets/NNS/O sparks/VBZ/O (NP conversation/NN/O) (NP discussion/NN/O) macro/FW/O (NP level/NN/O) (NP discussion/NN/O) (NP platform/NN/O) really/RB/O helps/VBZ/O us/PRP/O best/RBS/O showing/VBG/O 's/POS/O happening/VBG/O (NP world/NN/O) discussions/NNS/O strengthens/VBP/O key/JJ/O differentiators/NNS/O comprehensive/VBP/O fast/RB/O (NP quantitative/JJ/O perspective/NN/O) 'd/NNS/O say/VBP/O (NP quarter/NN/O) (NP measure/NN/O) analyze/JJ/O factors/NNS/O drive/VBP/O (NP causal/JJ/O growth/NN/O) (NP audience/NN/O) (NP coincident/NN/O) (NP growth/NN/O) (NP fourth/JJ/O quarter/NN/O) (NP primary/JJ/O driver/NN/O) (NP growth/NN/O) said/VBD/O earlier/JJR/O (NP product/NN/O) changes/NNS/O marketing/VBG/O also/RB/O look/VBP/O couple/JJ/O factors/NNS/O see/VBP/O 's/POS/O significant/JJ/O changes/NNS/O trendlines/NNS/O 're/VBP/O (NP top/JJ/O funnel/NN/O) one/CD/O areas/NNS/O could/MD/O 've/VBP/O benefited/VBN/O see/VBP/O (NP benefit/JJ/O top/JJ/O funnel/NN/O) (NP activity/NN/O) throughout/IN/O (NP election/NN/O) (NP time/NN/O) (NP period/NN/O) relates/VBZ/O impressions/NNS/O (NP growth/NN/O) (NP another/DT/O area/NN/O) (NP look/NN/O) mentioned/VBN/O earlier/RBR/O magnitude/JJ/O impressions/NNS/O platform/VBP/O large/JJ/O 'd/MD/O hard/VB/O (NP event/NN/O) (NP single/JJ/O person/NN/O) (NP drive/NN/O) sustained/VBD/O (NP growth/NN/O) impressions/NNS/O (NP growth/NN/O) said/VBD/O (NP world/NN/O) 's/POS/O leaders/NNS/O platform/VBP/O talking/VBG/O global/JJ/O issues/NNS/O people/NNS/O passionately/RB/O expressing/VBG/O points/NNS/O (NP view/NN/O) 's/POS/O positive/JJ/O Twitter/NNP/B-PERSON 's/POS/O 're/VBP/O (NP focused/JJ/O time/NN/O) (NP drive/NN/O) faster/RBR/O (NP distribution/NN/O) (NP content/NN/O) (NP comprehensive/JJ/O content/JJ/O discussion/NN/O) (NP personalization/NN/O) 're/VBP/O better/RBR/O delivering/VBG/O 's/POS/O happening/VBG/O (NP world/NN/O) 's/POS/O talked/NNS/O ca/MD/O n't/RB/O quantify/VB/O impact/VB/O (NP point/JJ/O time/NN/O) 'll/MD/O continue/VB/O analyze/RB/O go/VB/O Q1/NNP/O talk/VB/O (NP end/JJ/O quarter/NN/O) relates/VBZ/O (NP second/JJ/O question/NN/O) listen/FW/O (NP environment/NN/O) definitely/RB/O competitive/JJ/O throughout/IN/O 2016/CD/O 2015/CD/O prior/JJ/O calls/NNS/O 've/VBP/O talked/VBN/O (NP fact/NN/O) large-scale/JJ/O players/NNS/O (NP digital/JJ/O advertising/NN/O) (NP social/JJ/O advertising/NN/O) budgets/NNS/O prior/VBP/O years/NNS/O 's/POS/O increased/VBN/O throughout/IN/O 2016/CD/O 2017/CD/O (NP think/NN/O) saw/VBD/O mid-January/JJ/O relates/NNS/O acceleration/VBP/O competitive/JJ/O factors/NNS/O 's/POS/O really/RB/O advertisers/NNS/O start/VBP/O ramp/VB/O (NP spending/NN/O) coming/VBG/O (NP fourth/JJ/O quarter/NN/O) February/NNP/O (NP time/NN/O) (NP period/NN/O) historically/RB/O 35/CD/O 40/CD/O (NP versus/NN/O) January/NNP/O (NP ramp/NN/O) really/RB/O starts/VBZ/O mid-January/JJ/O February/NNP/O 's/POS/O (NP saw/JJ/O marketplace/NN/O) challenges/VBZ/O (NP ability/NN/O) (NP attract/JJ/O demand/NN/O) advertisers/NNS/O think/VBP/O 's/POS/O (NP number/NN/O) factors/NNS/O behind/IN/O players/NNS/O innovation/VBP/O competitors/NNS/O lot/VBP/O (NP stake/NN/O) (NP moment/NN/O) (NP time/NN/O) (NP good/JJ/O news/NN/O) (NP revenue/NN/O) follows/VBZ/O (NP audience/NN/O) 're/VBP/O seeing/VBG/O (NP acceleration/NN/O) (NP audience/NN/O) (NP growth/NN/O) want/VBP/O (NP translate/NN/O) (NP revenue/NN/O) dollars/NNS/O requires/VBZ/O us/PRP/O proving/VBG/O ROI/NNP/B-ORGANIZATION 're/VBP/O (NP process/NN/O) advertisers/NNS/O (NP addition/NN/O) 're/VBP/O focused/VBN/O (NP revenue/NN/O) streams/NNS/O (NP ad/NN/O) driven/VBN/O areas/NNS/O low/JJ/O hanging/VBG/O (NP opportunity/NN/O) audiences/NNS/O n't/RB/O monetized/VBD/O (NP final/JJ/O point/NN/O) 'd/MD/O make/VB/O 're/VBP/O (NP video/NN/O) positions/NNS/O us/PRP/O capture/VBP/O (NP ad/NN/O) dollars/NNS/O (NP competitive/JJ/O digital/JJ/O advertising/NN/O) (NP bucket/NN/O) 've/VBP/O started/VBN/O tap/JJ/O dollars/NNS/O live/VBP/O (NP video/NN/O) (NP product/NN/O) 'll/MD/O continue/VB/O invest/JJS/O (NP area/NN/O) well/RB/O Yes/NNP/O (NP focus/NN/O) (NP lot/NN/O) (NP attention/NN/O) (NP early/JJ/O building/NN/O) live/JJ/O events/NNS/O (NP live/JJ/O premium/JJ/O video/NN/O) (NP experience/NN/O) Anthony/NNP/B-PERSON said/VBD/O earlier/RBR/O (NP focus/NN/O) making/VBG/O sure/JJ/O connecting/VBG/O people/NNS/O faster/RBR/O interests/NNS/O topics/NNS/O (NP care/NN/O) includes/VBZ/O (NP able/JJ/O watch/NN/O) (NP event/NN/O) directly/RB/O Twitter/NNP/B-PERSON Explore/NNP/I-PERSON tab/VBD/O one/CD/O (NP area/NN/O) 'll/MD/O able/JJ/O go/VB/O (NP live/JJ/O event/NN/O) 're/VBP/O also/RB/O looking/VBG/O areas/NNS/O gets/VBZ/O much/RB/O faster/RBR/O (NP express/JJ/O interest/NN/O) (NP debate/NN/O) (NP instance/NN/O) (NP game/NN/O) (NP new/JJ/O show/NN/O) (NP entertainment/NN/O) (NP focus/NN/O) (NP team/NN/O) (NP something/NN/O) 're/VBP/O going/VBG/O (NP make/NN/O) (NP lot/NN/O) progress/IN/O (NP year/NN/O) Anthony/NNP/B-PERSON said/VBD/O focused/JJ/O 2016/CD/O making/VBG/O sure/JJ/O really/RB/O aligned/VBN/O around/IN/O one/CD/O (NP use/NN/O) (NP case/NN/O) showing/VBG/O 's/POS/O happening/VBG/O (NP anyone/NN/O) else/RB/O best/JJS/O (NP place/NN/O) get/VB/O (NP news/NN/O) (NP conversation/NN/O) (NP commentary/NN/O) 's/POS/O going/VBG/O (NP world/NN/O) made/VBD/O tough/JJ/O choices/NNS/O Fabric/NNP/B-PERSON also/RB/O things/NNS/O like/IN/O Vine/NNP/B-PERSON could/MD/O make/VB/O sure/JJ/O 're/VBP/O putting/VBG/O (NP effort/NN/O) behind/IN/O Twitter/NNP/B-PERSON made/VBD/O Twitter/NNP/B-PERSON great/JJ/O past/JJ/O 10/CD/O years/NNS/O looking/VBG/O new/JJ/O opportunities/NNS/O extend/VBP/O (NP use/NN/O) (NP case/NN/O) extend/VBP/O (NP sense/NN/O) 's/POS/O happening/VBG/O (NP live/JJ/O video/NN/O) (NP big/JJ/O focus/NN/O) well/RB/O (NP everything/NN/O) 're/VBP/O around/IN/O (NP live/JJ/O streaming/NN/O) (NP premium/NN/O) (NP video/NN/O) within/IN/O (NP app/NN/O) also/RB/O (NP individual-created/JJ/O live-streaming/JJ/O video/NN/O) Periscope/NNP/B-PERSON (NP majority/NN/O) (NP focus/NN/O) wanted/VBD/O (NP cut/NN/O) (NP everything/NN/O) go/VBP/O (NP matter/NN/O) Brian/NNP/B-GPE would/MD/O say/VB/O –/JJ/O n't/RB/O know/VBP/O 's/POS/O surprising/JJ/O (NP every/DT/O single/JJ/O year/NN/O) (NP fact/NN/O) Twitter/NNP/B-PERSON grows/VBZ/O (NP impact/JJ/O influence/NN/O) (NP instrumental/JJ/O global/JJ/O conversation/NN/O) (NP essential/NN/O) 's/POS/O (NP become/NN/O) one/CD/O first/JJ/O places/VBZ/O people/NNS/O go/VBP/O get/VB/O (NP sense/NN/O) people/NNS/O thinking/VBG/O people/NNS/O saying/VBG/O (NP global/JJ/O event/NN/O) 's/POS/O (NP lot/NN/O) closer/RBR/O (NP home/NN/O) (NP right/NN/O) (NP lot/NN/O) (NP conversation/NN/O) happening/VBG/O around/IN/O U.S/NNP/B-GPE (NP election/NN/O) (NP administration/NN/O) 's/POS/O (NP amazing/JJ/O see/NN/O) unfold/JJ/O definitely/RB/O learning/VBG/O (NP moment/NN/O) us/PRP/O think/VBP/O (NP thing/NN/O) constantly/RB/O inspires/VBZ/O (NP important/JJ/O essential/JJ/O Twitter/NN/O) continues/VBZ/O become/VBN/O (NP look/NN/O) 2017/CD/O (NP look/NN/O) think/VBP/O superpower/JJR/O really/RB/O provide/VB/O (NP world/NN/O) (NP break/NN/O) (NP news/NN/O) get/VB/O (NP information/NN/O) people/NNS/O faster/RBR/O (NP service/NN/O) (NP world/NN/O) (NP order/NN/O) people/NNS/O ton/VBP/O (NP work/NN/O) right/RB/O dig/VBZ/O (NP everything/NN/O) may/MD/O matter/VB/O find/VB/O (NP something/NN/O) really/RB/O 's/POS/O excited/VBN/O really/RB/O making/VBG/O sure/JJ/O apply/VB/O (NP artificial/JJ/O intelligence/NN/O) (NP machine/NN/O) learning/VBG/O right/JJ/O ways/NNS/O really/RB/O meet/VB/O superpower/JJR/O (NP little/JJ/O bird/NN/O) told/VBD/O (NP something/NN/O) could/MD/O n't/RB/O find/VB/O anywhere/JJ/O else/RB/O get/VB/O (NP application/NN/O) get/VB/O (NP service/NN/O) easy/JJ/O looking/VBG/O (NP window/NN/O) (NP see/NN/O) 's/POS/O going/VBG/O (NP lot/NN/O) (NP work/NN/O) (NP lot/NN/O) tabs/NNS/O (NP lot/NN/O) (NP syntax/NN/O) still/RB/O put/VBD/O front/JJ/O people/NNS/O easy/JJ/O opening/VBG/O (NP phone/NN/O) (NP webpage/NN/O) instantly/RB/O get/VB/O (NP sense/NN/O) matters/NNS/O people/NNS/O thinking/VBG/O (NP contribute/JJ/O participate/NN/O) really/RB/O believe/VB/O confident/JJ/O get/VB/O (NP something/NN/O) (NP much/JJ/O simpler/NN/O) (NP everyone/NN/O) within/IN/O (NP year/NN/O) excites/NNS/O lot/VBP/O 've/VBP/O hit/VBN/O (NP 10-year/JJ/O mark/NN/O) 're/VBP/O 11/CD/O (NP company/NN/O) endures/VBZ/O lasts/VBZ/O thrives/NNS/O Yeah/NNP/O (NP closing/NN/O) said/VBD/O 've/VBP/O never/RB/O (NP sure/JJ/O value/NN/O) Twitter/NNP/B-PERSON brings/VBZ/O people/NNS/O (NP world/NN/O) People/NNPS/O trust/VBP/O us/PRP/O carry/VBP/O important/JJ/O conversations/NNS/O commentary/VBP/O critique/JJ/O events/NNS/O ideas/NNS/O questions/NNS/O (NP world/NN/O) 've/VBP/O proven/VBN/O (NP focus/NN/O) works/NNS/O need/VBP/O apply/VB/O (NP approach/NN/O) (NP revenue/NN/O) products/NNS/O help/VBP/O advertisers/NNS/O advances/NNS/O us/PRP/O towards/VBP/O (NP ultimate/JJ/O goal/NN/O) building/VBG/O (NP company/NN/O) (NP service/NN/O) empowers/NNS/O (NP generation/NN/O) (NP generation/NN/O) want/VBP/O (NP thank/NN/O) (NP time/NN/O) (NP support/NN/O) 'll/MD/O see/VB/O Twitter/NNP/B-PERSON)
# Using Valence Aware Dictionary and sEntiment Reasoner (VADER)
def sentiment_scores(sentence):
sid_obj = SentimentIntensityAnalyzer()
sentiment_dict = sid_obj.polarity_scores(sentence)
print("Overall sentiment dictionary is : ", sentiment_dict)
print("sentence was rated as ", sentiment_dict['neg']*100, "% Negative")
print("sentence was rated as ", sentiment_dict['neu']*100, "% Neutral")
print("sentence was rated as ", sentiment_dict['pos']*100, "% Positive")
print("Sentence Overall Rated As", end = " ")
# decide sentiment as positive, negative and neutral
if sentiment_dict['compound'] >= 0.05 :
print("Positive")
elif sentiment_dict['compound'] <= - 0.05 :
print("Negative")
else :
print("Neutral")
sentiment_words = []
for x in tokens:
sentiment_words.append(sentiment_scores(x))
sentiment_words[:5]
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.3612}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.1531}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5106}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3612}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.2732}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.34}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5106}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.3182}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2023}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4767}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.3612}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.1027}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.6369}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.1027}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.1027}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2263}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0258}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2023}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.34}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.128}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.296}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.2732}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3612}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.296}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4767}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4588}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.34}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4588}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4939}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4939}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4588}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4588}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3612}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5106}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4939}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4939}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.6249}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3612}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5859}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4939}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4767}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.3182}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4767}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5106}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3612}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.6369}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4588}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.25}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2023}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2023}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0258}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4588}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2023}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0258}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2263}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2263}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.1027}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2263}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5267}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5574}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.25}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.1779}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.1779}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3612}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.128}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.2732}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.1779}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.25}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4939}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4588}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4215}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.6369}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.128}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3612}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.6249}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3818}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.1779}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.1779}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 1.0, 'neu': 0.0, 'pos': 0.0, 'compound': -0.2732}
sentence was rated as 100.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Negative
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0258}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2732}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5859}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2023}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0258}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.34}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4767}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4404}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0258}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4939}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4767}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.296}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3182}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.34}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.5106}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.2023}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.0772}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.3612}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 0.0, 'pos': 1.0, 'compound': 0.4019}
sentence was rated as 0.0 % Negative
sentence was rated as 0.0 % Neutral
sentence was rated as 100.0 % Positive
Sentence Overall Rated As Positive
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
Overall sentiment dictionary is : {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}
sentence was rated as 0.0 % Negative
sentence was rated as 100.0 % Neutral
sentence was rated as 0.0 % Positive
Sentence Overall Rated As Neutral
[None, None, None, None, None]
# Transforming initial text to dataframe and applying VADER
text_df = pd.DataFrame(speech_clean, columns=['Sentence'])
text_df
sia = SentimentIntensityAnalyzer()
text_df['Scores'] = text_df['Sentence'].apply(lambda Sentence: sia.polarity_scores(Sentence))
text_df['Compound'] = text_df['Scores'].apply(lambda score_dict: score_dict['compound'])
text_df['Sentiment'] = text_df['Compound'].apply(lambda c: 'positive' if c >0 else ('negative' if c<0 else 'neutral'))
text_df
print(text_df[['Sentence','Sentiment']].groupby("Sentiment").count())
import statistics
Sentence Sentiment negative 4 neutral 30 positive 79
# Overall speech sentiment
statistics.mode(text_df['Sentiment'])
'positive'